/* static/papsas_app/css/regional_content.css */
.page-title {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    background-color: var(--first-color);
    margin-top: 70px;
}

.page-title__text {
    font-size: 2.5rem;
    color: #ff0a0a;
    margin: 0;
    font-weight: 700;
}
/* === GLOBAL PAGE SPACING === */
.page-title + .container {
    margin-top: 3.5rem !important;
}
/* === CONTENT CARD LAYOUT === */
.content-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2.5rem;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.content-card__img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-bottom: 6px solid #ff0a0a;
    cursor: pointer; /* Indicates clickable for zoom */
    transition: transform 0.3s ease;
}

.content-card__img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

.content-card__body {
    padding: 1.8rem;
}

.content-card__title {
    font-size: 1.65rem;
    color: #ff0a0a;
    margin: 0 0 1rem 0;
    font-weight: 700;
    line-height: 1.3;
}

.content-card__text {
    font-size: 1rem;
    color: #333;
    line-height: 1.75;
    margin-bottom: 1rem;
    text-align: justify;
}

.content-card__text:last-child {
    margin-bottom: 0;
}

.content-card__highlight,
.content-card__hashtags {
    color: #ff0a0a;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    display: block;
    font-style: italic;
}

/* === DIVIDER === */
.content-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #ff0a0a, transparent);
    margin: 3rem 0;
    border: none;
}

/* === VIDEO SECTION – REGION 3 STYLE (FLAT & CLEAN) === */
.video-section {
    margin-top: 3rem;
    padding: 1rem 0;
}

.video-section__title {
    font-size: 1.8rem;
    color: #ff0a0a;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.video-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 24px; /* Rounder corners as requested */
    overflow: hidden;
}

.video-card__player video {
    width: 100%;
    height: auto;
    display: block;
}

.video-card__content {
    padding: 1rem;
}

.video-card__title {
    font-size: 1.35rem;
    margin: 0 0 0.6rem;
    color: #ff0a0a;
    font-weight: 600;
}

.video-card__caption {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* === STICKY FOOTER === */
html, body {
    height: 100% !important;
    margin: 0 !important;
}
body {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
    padding-top: 70px !important;
}
.main {
    flex: 1 !important;
}
.footer {
    margin-top: auto !important;
}

/* === RESPONSIVE === */
@media (max-width: 767px) {
    .page-title + .container {
        margin-top: 2.5rem !important;
    }
    .content-card__img {
        height: 320px !important;
    }
    .content-card__body {
        padding: 1.4rem;
    }
    .content-card__title {
        font-size: 1.5rem;
    }
    .video-section__title {
        font-size: 1.6rem;
    }
    .video-card__title {
        font-size: 1.2rem;
    }
    .video-card__content {
        padding: 0.8rem;
    }
}

