/* ===== Media Section: Facebook, Gallery, Press Release ===== */

.dsp-media-section {
    padding: 70px 0 50px;
    background: #f0f4f8;
}

.dsp-media-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(10, 31, 61, 0.08);
    border: 1px solid rgba(10, 31, 61, 0.06);
    padding: 28px;
    height: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.dsp-media-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 12px;
}

.dsp-media-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0a1f3d;
    margin: 0;
    position: relative;
    padding-bottom: 10px;
}

.dsp-media-card-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, #d4a017, #e8c056);
    border-radius: 2px;
}

.dsp-media-view-all {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #0a1f3d;
    text-decoration: none;
    padding: 10px 18px;
    border: 1.5px solid #0a1f3d;
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.dsp-media-view-all:hover {
    background: #0a1f3d;
    color: #ffffff;
    text-decoration: none;
}

/* Facebook card */
.dsp-fb-card {
    background: linear-gradient(145deg, #e8f0f8 0%, #f5f9fc 50%, #eef4fa 100%);
    border: 1px solid rgba(10, 31, 61, 0.08);
    position: relative;
    overflow: hidden;
    text-align: center;
    justify-content: center;
    min-height: 520px;
}

.dsp-fb-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/logo.png') center 55% / 220px no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.dsp-fb-card-inner {
    position: relative;
    z-index: 1;
    padding: 20px 10px;
}

.dsp-fb-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #1877f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.35);
}

.dsp-fb-icon i {
    font-size: 40px;
    color: #ffffff;
}

.dsp-fb-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0a1f3d;
    margin: 0 0 24px;
    letter-spacing: 1px;
}

.dsp-fb-name {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0a1f3d;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.7);
    border-left: 3px solid #1877f2;
    border-radius: 0 8px 8px 0;
    margin-bottom: 28px;
    text-align: left;
}

.dsp-fb-follow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0a1f3d;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 31, 61, 0.2);
}

.dsp-fb-follow i {
    font-size: 16px;
}

.dsp-fb-follow:hover {
    background: #061428;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Photo gallery grid */
.dsp-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    flex: 1;
}

.dsp-photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #eef1f5;
}

.dsp-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.dsp-photo-item:hover img {
    transform: scale(1.08);
}

.dsp-photo-item .dsp-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 31, 61, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dsp-photo-item:hover .dsp-photo-overlay {
    opacity: 1;
}

.dsp-photo-overlay i {
    color: #ffffff;
    font-size: 20px;
}

/* Press release list */
.dsp-press-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dsp-press-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eef1f5;
}

.dsp-press-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dsp-press-thumb {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    background: #eef1f5;
}

.dsp-press-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dsp-press-content {
    flex: 1;
    min-width: 0;
}

.dsp-press-content h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    color: #0a1f3d;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dsp-press-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #d4a017;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dsp-press-date i {
    font-size: 13px;
}

.dsp-press-excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #1e293b;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dsp-press-read {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0856a8;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.dsp-press-read:hover {
    color: #0a1f3d;
    text-decoration: none;
}

@media (max-width: 991px) {
    .dsp-media-section {
        padding: 50px 0 40px;
    }

    .dsp-fb-card {
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .dsp-photo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .dsp-media-card {
        min-height: 0;
        padding: 18px;
        margin-bottom: 18px;
    }

    .dsp-fb-card {
        min-height: 280px;
    }

    .dsp-photo-item {
        aspect-ratio: auto;
        max-height: 110px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dsp-photo-item img {
        width: 100%;
        height: auto;
        max-height: 110px;
        object-fit: contain;
    }

    .dsp-photo-item:hover img {
        transform: none;
    }

    .dsp-press-thumb {
        width: 72px;
        min-width: 72px;
        height: auto;
        max-height: 72px;
        aspect-ratio: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #eef1f5;
    }

    .dsp-press-thumb img {
        width: 100%;
        height: auto;
        max-height: 72px;
        object-fit: contain;
    }
}
