﻿/* ================= HOME PAGE ================= */

.page-home .outer {
    width: 100%;
    margin: 0 auto;
    padding: 1vw;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
}

.page-home .parent1 {
    display: flex;
}

@media (max-width:1000px) {
    .page-home .parent1 {
        flex-direction: column;
    }

    .page-home .latest-story-container {
        order: 1;
    }

    .page-home .left-section {
        order: 2;
    }

    .page-home .headline-section {
        order: 3;
    }
}

/* ---------- Left Section ---------- */
.page-home .left-section {
    margin-top: 0.5vw;
    width: 30%;
    display: flex;
    flex-direction: column;
    border-radius: 0.5vw;
    position: relative;
    border-width: 0 0 0.5vw 0;
    border-style: solid;
    border-color: #d10202;
}



.page-home .cartoon {
    width: 100%;
    margin-bottom: 3vw;
}

    .page-home .cartoon img,
    .page-home .quote img {
        aspect-ratio: 16/9;
        width: 100%;
        border-bottom-left-radius: 0.5vw;
        border-bottom-right-radius: 0.5vw;
    }

.page-home .quote {
    width: 100%;
    position: absolute;
    top: 49%;
}

.page-home .caption {
    font-weight: 550;
    font-size: 1.3vw;
    margin: 0.5vw;
}

@media (max-width:1000px) {
    .page-home .left-section {
        width: 100%;
        margin: 5vw 0;
        gap: 2vw;
        border-width: 0;
    }

    .page-home .left-section-header {
        font-size: 5vw;
        padding: 1vw 0 1vw 2vw;
        border-top-left-radius: 1.5vw;
        border-top-right-radius: 1.5vw;
    }

    .page-home .cartoon,
    .page-home .quote {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: 2vw;
        position: relative;
    }

        .page-home .cartoon img,
        .page-home .quote img {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

    .page-home .caption {
        font-size: 4.5vw;
        margin: 2vw 1vw;
    }
}

/* ---------- Latest Story ---------- */

.page-home .story-text.short-text {
    overflow: hidden;
    height: 247px;
    max-height: 247px;
}

.page-home .story-text.expanded {
    max-height: none;
}


.page-home .latest-story-container {
    width: 40%;
    margin: 0 1vw;
}

.page-home .story-header {
    display: flex;
    margin: 1vw 0;
    gap: 1vw;
}

.page-home .dash-before {
    height: 0.2em;
    background-color: #d10202;
    width: 5%;
    margin: auto 0;
}



.page-home .dash-after {
    height: 0.2em;
    width: 100%;
    background-color: #acacac;
    margin: auto 0;
}

.page-home #latest-news-card {
    margin-bottom: 1vw;
    padding: 0 0 1vw 1vw;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-bottom: solid 0.2vw #d10202;
    border-top-left-radius: 0.5vw;
    border-top-right-radius: 0.5vw;
}

.page-home #in-img-heading {
    display: flex;
}

.page-home .breaking-news {
    background-color: #d10202;
    padding: 0.3vw;
    width: fit-content;
    font-size: 0.7vw;
    margin-bottom: 1vw;
}

.page-home .latest-story-title {
    font-size: 2vw;
}

.page-home .time {
    font-size: 0.9vw;
    padding-top: 1vw;
    color: #cecece;
}

.page-home .latest-story-content {
    font-size: 1.3vw;
    text-align: justify;
}

@media (max-width:1000px) {
    .page-home .outer {
        padding: 2vh;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border: 1px solid rgba(0,0,0,0.05);
    }

    .page-home .latest-story-container {
        width: 100%;
        margin: 0;
    }

    .page-home .story-header {
        gap: 3vw;
    }

    .page-home .story-title {
        font-size: 5vw;
    }

    .page-home #latest-news-card {
        aspect-ratio: 4/3;
        border-top-left-radius: 2vw;
        border-top-right-radius: 2vw;
        border-bottom: solid 1vw #d10202;
        padding: 3vw;
    }

    .page-home .breaking-news {
        font-size: 2vw;
        padding: 0.5vw;
    }

    .page-home .latest-story-title {
        font-size: 5vw;
    }

    .page-home .time {
        font-size: 2vw;
        padding: 1vw;
    }

    .page-home .latest-story-content {
        font-size: 4vw;
    }
}

/* ---------- Headlines ---------- */
@media (min-width:801px) {
    .page-home .left-section,
    .page-home .headline-section {
        max-height: 50vw;
    }
}

.page-home .headline-section {
    width: 30%;
    display: flex;
    flex-direction: column;
    height: 90vh;
    overflow-y: hidden;
    border-bottom: solid 0.5vw #d10202;
    border-radius: 0.5vw;
}



.page-home .headlines-list {
    overflow: hidden;
}

.page-home .headline-move {
    display: flex;
    animation: scroll-up 20s linear infinite;
    flex-direction: column;
}

    .page-home .headline-move:hover {
        animation-play-state: paused;
    }

.page-home .headline-link {
    text-decoration: none;
    color: black;
}

    .page-home .headline-link:visited {
        color: black;
    }

.page-home .headline {
    border-bottom: solid 1px #acacac;
    border-radius: 1vw;
    padding: 1vw;
    font-size: 1vw;
    font-weight: 550;
    display: flex;
    gap: 1.5vw;
    list-style: none;
    align-items: center;
}

    .page-home .headline:hover {
        background-color: #e4e4e4;
    }

    .page-home .headline img {
        aspect-ratio: 1/1;
        width: 5vw;
        border: 1px solid #d10202;
        border-radius: 0.3vw;
    }

@media (max-width:1000px) {
    .page-home .headline-section {
        width: 100%;
        height: 100vw;
        margin-bottom: 5vw;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: 2vw;
        border-bottom: solid 2vw #d10202;
    }

    .page-home .headline-header-title {
        font-size: 5vw;
        padding: 1vw 0 1vw 2vw;
        border-top-left-radius: 1.5vw;
        border-top-right-radius: 1.5vw;
    }

    .page-home .headline {
        font-size: 4vw;
    }

        .page-home .headline img {
            width: 25vw;
        }
}

/* ---------- Animation (GLOBAL ON PURPOSE) ---------- */
@keyframes scroll-up {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* ---------- Iframe & Gallery ---------- */
.page-home .parent3 {
    background-color: #000;
    display: flex;
    height: 15vw;
    margin: 2vw 0;
    padding: 1vw;
    border-radius: 1vw;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    border-right: 1vw solid #d10202;
    border-left: 1vw solid #d10202;
}

.page-home .iframe {
    height: 100%;
    width: 30%;
    box-shadow: 0 0 8px 2px rgba(255, 0, 0, 0.8), 0 0 8px 2px rgba(255, 0, 0, 0.4);
    border-radius: 0.5vw;
}

    .page-home .iframe iframe {
        width: 100%;
        height: 100%;
        aspect-ratio: 16/9;
        border-radius: 0.5vw;
    }

.page-home .slideshow-container {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 30%;
    border-radius: 0.5vw;
    overflow: hidden;
    box-shadow: 0 0 8px 2px rgba(255, 0, 0, 0.8), 0 0 8px 2px rgba(255, 0, 0, 0.4);
}

.page-home .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.5vw;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

    .page-home .slide.active {
        opacity: 1;
    }

@media (max-width:1000px) {
    .page-home .parent3 {
        background-color: white;
        height: auto;
        flex-direction: column;
        gap: 5vw;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: 2vw;
    }

    .page-home .slideshow-container {
        order: 1;
        width: 100%;
        aspect-ratio: 16/9;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border: 1px solid rgba(0,0,0,0.05);
    }

    .page-home .iframe {
        order: 2;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border: 1px solid rgba(0,0,0,0.05);
    }
}
/* ================= HOME PAGE ================= */

/* ================= NATIONAL PAGE ================= */

/* Reset ONLY for national page */
.page-national * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.page-national .short-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-national .expanded {
    display: block !important;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
}

.page-national .read-more-toggle {
    display: inline-block;
    margin-top: 5px;
    cursor: pointer;
    color: #0d6efd;
    font-weight: 500;
}



/* ---------- Main Layout ---------- */
.page-national .main-national {
    margin: 2vh auto;
    width: 100%;
    padding: 2vw;
    background-color: #f7f6f1;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    font-family: "Times New Roman", Times, serif;
    gap: 2vw;
}

/* ---------- Main Article ---------- */
.page-national #article-main {
    width: 70%;
    padding-right: 2vw;
    border-right: 1px solid #e0e0e0;
}

.page-national .article-title {
    font-size: 3vw;
    font-weight: 700;
    line-height: 1;
}

.page-national .main-image {
    margin: 2vw 0 1vw 0;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: fill;
    border-radius: 0.8vw;
}

.page-national .ImgCap {
    font-style: italic;
    font-size: 1.2vw;
    margin: 0 0 3vw 1vw;
    padding: 0 1vw;
    border-left: 3px solid #8b0000;
    color: #444;
}

.page-national .lead-paragraph {
    font-size: 1.5vw;
    text-align: justify;
}

/* ---------- Sidebar ---------- */
.page-national .sidebar {
    width: 30%;
    overflow-y: scroll;
}

    .page-national .sidebar::-webkit-scrollbar {
        width: 8px;
    }

.page-national .sidebar-title {
    position: sticky;
    top: 0;
    font-size: 2vw;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: #333;
    background-color: #f7f6f1;
    border-bottom: 2px solid #ef4444;
    padding-bottom: 5px;
    z-index: 1000;
}

/* ---------- Sidebar News Items ---------- */
.page-national .news-link {
    text-decoration: none;
}

.page-national .latest-news-item {
    margin-top: 1vw;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 0.5vw;
}

.page-national .news-details {
    background-color: rgba(0, 0, 0, 0.4);
    border-bottom-left-radius: 0.5vw;
    border-bottom-right-radius: 0.5vw;
    backdrop-filter: blur(10px);
    padding: 1vw;
    font-size: 1.1vw;
}
/* ================= NATIONAL PAGE ================= */

/* ================= INTERNATIONAL PAGE ================= */

/* Reset ONLY for International page */



.page-international * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.page-international .short-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-international .expanded {
    display: block !important;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
}

.page-international .read-more-toggle {
    display: inline-block;
    margin-top: 5px;
    cursor: pointer;
    color: #0d6efd;
    font-weight: 500;
}


/* ---------- Main Layout ---------- */
.page-international .main-international {
    margin: 2vh auto;
    width: 100%;
    padding: 2vw;
    background-color: #f7f6f1;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    font-family: "Times New Roman", Times, serif;
    gap: 2vw;
}

/* ---------- Section Titles ---------- */
.page-international .international-section-title {
    font-size: 2vw;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: #333;
    background-color: #f7f6f1;
    border-bottom: 2px solid #ef4444;
    padding-bottom: 5px;
}

/* ---------- Links ---------- */
.page-international .international-link {
    text-decoration: none;
}

/* ---------- Left Section ---------- */
.page-international #left-section {
    width: 25%;
}

.page-international .left-content {
    margin-top: 1.5vw;
    padding-bottom: 1.5vw;
    border-bottom: 1px solid #e0e0e0;
}

.page-international .news-img {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
    border-radius: 0.5vw;
    object-fit: cover;
}

.page-international .left-news {
    font-size: 1.3vw;
    font-weight: 550;
    color: black;
    margin-top: 0.5vw;
}

.page-international .read-time {
    color: #444;
    font-weight: 300;
    font-style: italic;
    font-size: 1vw;
}

/* ---------- Middle Section ---------- */
.page-international .mid-section {
    padding: 0 2vw;
    width: 50%;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}

.page-international .mid-title {
    font-family: "Times New Roman", Times, serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
}

@media (max-width:1000px) {
    .page-international .mid-title {
        font-size: 1.25rem;
    }
}

.page-international .mid-news-img {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
    border-radius: 0.5vw;
    object-fit: cover;
    margin: 2vw 0 1vw 0;
}

.page-international .imgCap {
    font-style: italic;
    font-size: 1.2vw;
    margin: 0 0 3vw 1vw;
    padding: 0 1vw;
    border-left: 3px solid #8b0000;
    color: #444;
}

.page-international .mid-section-description {
    font-size: 1.5vw;
    text-align: justify;
}

/* ---------- Right Section ---------- */
.page-international .right-section {
    width: 25%;
}

.page-international .right-section-list-container {
    height: 150vh;
    overflow-y: scroll;
}

    .page-international .right-section-list-container::-webkit-scrollbar {
        width: 8px;
    }

.page-international .right-list {
    font-size: 1.5vw;
    font-weight: 550;
    line-height: 1.4;
    color: #333;
    padding-bottom: 2vh;
    border-bottom: 1px solid #e0e0e0;
    margin-top: 1.5vw;
}
/* ================= INTERNATIONAL PAGE ================= */

/* ================= VIDEOS PAGE ================= */

/* ---------- Main Layout ---------- */
.page-videos .main-Videos {
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 15px;
    font-family: 'Inter', sans-serif;
    border-top: 0.5vh solid #d4c8b3;
    border-bottom: 0.5vh solid #d4c8b3;
}

/* ---------- Main Article ---------- */
.page-videos #article-main {
    flex: 3;
    border-right: 1px solid #e0e0e0;
    padding-right: 20px;
}

/* ---------- Sidebar ---------- */
.page-videos #sidebar {
    flex: 1;
}

/* ---------- Main Video ---------- */
.page-videos #main_iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 300px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ---------- Article Content ---------- */
.page-videos .article-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.page-videos .read-time {
    display: block;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.page-videos .lead-paragraph {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* ---------- Sidebar Header ---------- */
.page-videos .sidebar-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #ef4444;
    padding-bottom: 5px;
}

/* ---------- Sidebar List ---------- */
.page-videos #national-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-videos .latest-news-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.2s, transform 0.1s;
    border: 1px solid #f3f4f6;
    flex-direction: column;
}

    .page-videos .latest-news-item:hover {
        background-color: #f9fafb;
        transform: translateY(-2px);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

/* ---------- List Video Thumbnail ---------- */
.page-videos .list_iframe {
    width: 100%;
    height: 23vh;
    flex-shrink: 0;
    border-radius: 4px;
}

/* ---------- Sidebar News Details ---------- */
.page-videos .news-details {
    flex-grow: 1;
}

.page-videos .national-right-news-headline {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .page-videos .main-Videos {
        flex-direction: column;
    }

    .page-videos #article-main {
        border-right: none;
        padding-right: 0;
    }

    .page-videos #sidebar {
        order: 2;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e0e0e0;
    }

    .page-videos .article-title {
        font-size: 1.5rem;
    }
}
/* ================= VIDEOS PAGE ================= */

/* ================= REPORT PAGE ================= */

/* ---------- Main Layout ---------- */
.page-report .main-Report {
    display: flex;
    gap: 20px;
    max-width: 1400px !important;
    margin: 20px auto;
    padding: 0 15px;
    font-family: 'Inter', sans-serif;
    border-top: 0.5vh solid #d4c8b3;
    border-bottom: 0.5vh solid #d4c8b3;
}

/* ---------- Main Article ---------- */
.page-report #article-main {
    flex: 3;
    flex-shrink: 0;
    border-right: 1px solid #e0e0e0;
    padding-right: 20px;
}

/* ---------- Sidebar ---------- */
.page-report #sidebar {
    flex: 1;
    flex-shrink: 0;
}

/* ---------- Main Media ---------- */
.page-report #main_iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 300px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ---------- Article Content ---------- */
.page-report .article-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.page-report .read-time {
    display: block;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.page-report .lead-paragraph {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* ---------- Sidebar Header ---------- */
.page-report .sidebar-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #ef4444;
    padding-bottom: 5px;
}

/* ---------- Sidebar List ---------- */
.page-report #national-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-report .latest-news-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.2s, transform 0.1s;
    border: 1px solid #f3f4f6;
    flex-direction: column;
}

    .page-report .latest-news-item:hover {
        background-color: #f9fafb;
        transform: translateY(-2px);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

/* ---------- List Media ---------- */
.page-report .list_iframe {
    width: 100%;
    height: 23vh;
    flex-shrink: 0;
    border-radius: 4px;
}

/* ---------- Sidebar News Content ---------- */
.page-report .news-details {
    flex-grow: 1;
}

.page-report .national-right-news-headline {
    font-size: 0.9rem;
    font-weight: 900;
    color: #1f2937;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .page-report .main-Report {
        flex-direction: column;
    }

    .page-report #article-main {
        border-right: none;
        padding-right: 0;
    }

    .page-report #sidebar {
        order: 2;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e0e0e0;
    }

    .page-report .article-title {
        font-size: 1.5rem;
    }
}
/* ================= REPORT PAGE ================= */


/* ================= ABOUT PAGE ================= */

/* ---------- Page Base ---------- */
.page-about .Aboutpage-body {
    font-family: Georgia, "Times New Roman", Times, serif;
    background-color: #f7f6f1;
    color: #333;
    line-height: 1.6;
}

/* ---------- Main Layout ---------- */
.page-about .Aboutmain-container {
    width: 100%;
    margin: 2vh auto;
    display: flex;
    padding: 40px 20px;
    gap: 40px;
    background-color: #f7f6f1;
    color: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-top: 0.5vh solid #d4c8b3;
    border-bottom: 0.5vh solid #d4c8b3;
}

/* ---------- About Main Content ---------- */
.page-about #about-main {
    flex: 3;
    max-width: 70%;
    padding-right: 40px;
    border-right: 1px solid #e0e0e0;
}




/* ---------- Section Headings ---------- */
.page-about .section-heading {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #8b0000;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* ---------- Paragraphs ---------- */
.page-about .about-paragraph {
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-align: justify;
}

/* ---------- Team Grid ---------- */
.page-about .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-about .team-member {
    text-align: center;
}

.page-about .member-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #d4c8b3;
}

.page-about .member-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.page-about .member-title {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    color: #888;
}

/* ---------- Sidebar ---------- */
.page-about #sidebar {
    flex: 1;
    max-width: 30%;
    padding-left: 40px;
}

.page-about .sidebar-title {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a1a1a;
}

/* ---------- Contact List ---------- */
.page-about .contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.page-about .contact-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.page-about .contact-label {
    display: block;
    font-family: Helvetica, Arial, sans-serif;
    color: #8b0000;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

/* ---------- Sidebar Links ---------- */
.page-about .sidebar-link {
    display: block;
    padding: 10px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: color 0.2s;
}

    .page-about .sidebar-link:hover {
        color: #8b0000;
    }

/* ---------- Ad Block ---------- */
.page-about #ad-block {
    margin-top: 40px;
    padding: 30px;
    background-color: #8b0000;
    color: white;
    text-align: center;
    border-radius: 8px;
    font-family: Helvetica, Arial, sans-serif;
}

.page-about .ad-block-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
    line-height: 1.2;
}

.page-about .ad-block-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .page-about .Aboutmain-container {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .page-about #about-main {
        max-width: 100%;
        border-right: none;
        padding-right: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
    }

    .page-about #sidebar {
        max-width: 100%;
        padding-left: 0;
    }
}
/* ================= ABOUT PAGE ================= */
