/* ========================================
   Chairman Message - 2 Column Layout CSS
   ======================================== */

/* Chairman Row - 2 Column Layout */
.dt-chairman-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: flex-start;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Left Column */
.dt-chairman-col-left {
    text-align: center;
}

/* Right Column */
.dt-chairman-col-right {
    padding: 0px 0;
}

/* ========================================
   Chairman Image Section
   ======================================== */

.dt-chairman-image-container {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    margin-left: auto;
    margin-right: auto;
}

.dt-chairman-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dt-chairman-image-container:hover .dt-chairman-image {
    transform: scale(1.05);
}

/* Chairman Name & Title */
.dt-chairman-name {
    font-family: "Finlandica Headline", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0 8px 0;
    letter-spacing: 1px;
}

.dt-chairman-title {
    font-size: 16px;
    color: #1e90ff;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
}

/* ========================================
   Message Content Section
   ======================================== */

.dt-message-title {
    font-family: "Finlandica Headline", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #1e90ff;
    letter-spacing: 1px;
}

.dt-message-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dt-message-section {
    margin: 0;
}

.dt-message-text {
    font-size: 15px;
    line-height: 1.9;
    color: #555555;
    margin: 0;
    letter-spacing: 1px;
}

/* ========================================
   Signature Section
   ======================================== */

.dt-signature-section {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 2px solid #e8eaed;
}

.dt-signature-text {
    font-size: 15px;
    color: #555555;
    margin: 0 0 8px 0;
    font-style: italic;
    letter-spacing: 1px;
}

.dt-signature-name {
    font-family: "Finlandica Headline", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin: 8px 0;
    letter-spacing: 1px;
}

.dt-signature-title {
    font-size: 14px;
    color: #1e90ff;
    font-weight: 600;
    margin: 5px 0;
    letter-spacing: 1px;
}

.dt-signature-college {
    font-size: 13px;
    color: #888888;
    margin: 5px 0 0 0;
    letter-spacing: 1px;
}

/* ========================================
   Responsive Design - Tablet (768px)
   ======================================== */

@media (max-width: 768px) {
    .dt-chairman-row {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .dt-message-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .dt-chairman-name {
        font-size: 24px;
    }

    .dt-message-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .dt-signature-name {
        font-size: 18px;
    }

    .dt-chairman-image-container {
        width: 240px;
        height: 280px;
    }
}

/* ========================================
   Responsive Design - Mobile (600px)
   ======================================== */

@media (max-width: 600px) {
    .dt-chairman-row {
        gap: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .dt-message-title {
        font-size: 24px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .dt-chairman-name {
        font-size: 20px;
        margin: 15px 0 6px 0;
    }

    .dt-chairman-title {
        font-size: 14px;
    }

    .dt-message-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .dt-message-section {
        gap: 18px;
    }

    .dt-message-content {
        gap: 18px;
    }

    .dt-signature-section {
        margin-top: 30px;
        padding-top: 20px;
    }

    .dt-signature-name {
        font-size: 16px;
        margin: 6px 0;
    }

    .dt-signature-text {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .dt-chairman-image-container {
        width: 200px;
        height: 240px;
        margin-bottom: 20px;
    }
}
