/* Principal desk — slider sidebar panel */
#rs-slider .home-slider-row {
    align-items: stretch;
}

#rs-slider .home-slider-row > [class*="col-"] {
    display: flex;
}

.principal-desk-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(6, 26, 40, 0.1);
    border-left: 4px solid #f9c833;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 16px 40px rgba(6, 26, 40, 0.1);
    overflow: hidden;
}

.principal-desk-header {
    padding: 18px 18px 14px;
    background: linear-gradient(135deg, #04121c 0%, #061a28 60%, #081f2f 100%);
    border-bottom: 1px solid rgba(249, 200, 51, 0.2);
}

.principal-desk-title {
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.principal-desk-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 20px 18px 22px;
    text-align: center;
}

.principal-desk-profile {
    margin-bottom: 16px;
}

.principal-desk-photo-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    padding: 4px;
    background: linear-gradient(135deg, #f9c833 0%, #f0b429 100%);
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(249, 200, 51, 0.28);
}

.principal-desk-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ffffff;
    display: block;
}

.principal-desk-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    width: 100%;
}

.principal-desk-message {
    margin: 0 0 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.86rem;
    font-weight: 400;
    line-height: 1.65;
    color: #334155;
    text-align: left;
}

.principal-desk-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 10px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: #061a28;
    background: linear-gradient(135deg, #f9c833 0%, #f0b429 100%);
    border: none;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(249, 200, 51, 0.28);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.principal-desk-read-more:hover,
.principal-desk-read-more:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(249, 200, 51, 0.38);
    outline: none;
}

@media (max-width: 991px) {
    .principal-desk-panel {
        min-height: 0;
        border-left: none;
        border-top: 4px solid #f9c833;
        border-radius: 0 0 16px 16px;
        margin-top: 0;
    }

    .principal-desk-body {
        padding: 18px 16px 20px;
    }
}
