/* ================================
   DAILY NEWS - GUARDIAN STYLE CSS
   ================================ */

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', Arial, sans-serif;
    background-color: #f6f6f6;
    color: #121212;
    font-size: 16px;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

/* ================================
   TOP BAR
   ================================ */
.top-bar {
    background-color: #052962;
    color: #ffffff;
    font-size: 12px;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ================================
   HEADER
   ================================ */
.header {
    background-color: #052962;
    padding: 10px 0 0 0;
    border-bottom: 3px solid #c70000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo a {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
}

.header-logo a:hover {
    text-decoration: none;
}

.top-nav {
    display: flex;
    gap: 18px;
}

.top-nav a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.top-nav a:hover {
    opacity: 1;
    text-decoration: none;
    border-bottom: 2px solid #ffffff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.subscribe-top-btn {
    background-color: #c70000;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s;
}

.subscribe-top-btn:hover {
    background-color: #a00000;
}

.search-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.4);
    color: #ffffff;
    padding: 7px 10px;
    cursor: pointer;
    border-radius: 2px;
    font-size: 14px;
}

/* ================================
   SECTION NAV
   ================================ */
.section-nav {
    background-color: #052962;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.section-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 0;
    overflow-x: auto;
}

.section-nav a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 14px;
    display: inline-block;
    opacity: 0.8;
    white-space: nowrap;
    transition: opacity 0.2s;
    border-bottom: 3px solid transparent;
}

.section-nav a:hover,
.section-nav a.active {
    opacity: 1;
    text-decoration: none;
    border-bottom: 3px solid #c70000;
}

/* ================================
   BREAKING NEWS TICKER
   ================================ */
.ticker-wrap {
    background-color: #c70000;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 36px;
}

.ticker-label {
    background-color: #800000;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    letter-spacing: 1.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding-left: 20px;
}

@keyframes ticker {
    0%   { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* ================================
   PAGE WRAP
   ================================ */
.page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
}

.divider {
    border: none;
    border-top: 1px solid #dcdcdc;
    margin: 24px 0;
}

/* ================================
   LABELS / TAGS
   ================================ */
.label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 6px;
    padding: 2px 6px;
}

.politics-label  { background-color: #052962; color: #fff; }
.sport-label     { background-color: #005689; color: #fff; }
.business-label  { background-color: #4a1942; color: #fff; }
.tech-label      { background-color: #1a5c38; color: #fff; }
.health-label    { background-color: #a1845c; color: #fff; }
.environment-label { background-color: #185a1a; color: #fff; }
.opinion-label   { background-color: #c70000; color: #fff; }

/* ================================
   COLORED BACKGROUNDS (placeholder images)
   ================================ */
.politics-bg    { background: linear-gradient(135deg, #052962, #1a6eb5); }
.sport-bg       { background: linear-gradient(135deg, #005689, #00a1c4); }
.business-bg    { background: linear-gradient(135deg, #4a1942, #9c4e91); }
.tech-bg        { background: linear-gradient(135deg, #1a5c38, #3ab078); }
.health-bg      { background: linear-gradient(135deg, #a1845c, #d4b896); }
.environment-bg { background: linear-gradient(135deg, #185a1a, #4caf50); }

/* ================================
   TOP STORIES GRID
   ================================ */
.top-stories {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

/* FEATURED STORY */
.featured-story {
    border-top: 3px solid #052962;
}

.featured-img {
    width: 100%;
    height: 320px;
    margin-bottom: 12px;
}

.featured-text .featured-headline {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #121212;
}

.featured-text .featured-standfirst {
    font-size: 15px;
    color: #555555;
    margin-bottom: 12px;
    line-height: 1.5;
}

.byline {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #767676;
}

/* RIGHT COLUMN STORIES */
.right-stories {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.side-story {
    display: flex;
    gap: 10px;
    padding: 14px 0;
    border-top: 3px solid #dcdcdc;
}

.border-sport    { border-top-color: #005689; }
.border-business { border-top-color: #4a1942; }
.border-tech     { border-top-color: #1a5c38; }

.side-story-text {
    flex: 1;
}

.side-story-text h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
    color: #121212;
}

.side-standfirst {
    font-size: 13px;
    color: #555555;
    margin-bottom: 6px;
}

.time {
    font-size: 11px;
    color: #767676;
}

.side-story-img {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
}

/* ================================
   CONTENT + SIDEBAR LAYOUT
   ================================ */
.content-sidebar {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* ================================
   SECTION HEADINGS
   ================================ */
.section-heading {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #052962;
    color: #052962;
}

.opinion-heading {
    border-bottom-color: #c70000;
    color: #c70000;
}

/* ================================
   NEWS GRID
   ================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 10px;
}

.news-card {
    border-top: 3px solid #dcdcdc;
    padding-top: 10px;
}

.news-card-img {
    width: 100%;
    height: 140px;
    margin-bottom: 10px;
}

.news-card-body h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
    color: #121212;
}

.news-card-body p {
    font-size: 13px;
    color: #555555;
    margin-bottom: 8px;
    line-height: 1.4;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #767676;
}

/* ================================
   OPINION GRID
   ================================ */
.opinion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.opinion-card {
    border-top: 3px solid #c70000;
    padding-top: 12px;
}

.opinion-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c70000, #ff6b6b);
    margin-bottom: 10px;
}

.opinion-body h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #121212;
}

.opinion-body p {
    font-size: 13px;
    color: #555555;
    margin-bottom: 8px;
    line-height: 1.4;
}

.opinion-author {
    font-size: 12px;
    font-weight: 700;
    color: #c70000;
}

/* ================================
   SIDEBAR
   ================================ */
.sidebar-widget {
    border-top: 3px solid #052962;
    padding-top: 12px;
    margin-bottom: 28px;
}

.widget-title {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: #052962;
    margin-bottom: 12px;
}

/* MOST VIEWED */
.most-viewed {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.most-viewed li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #121212;
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 12px;
    line-height: 1.3;
}

.most-viewed li:last-child {
    border-bottom: none;
}

.mv-num {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #dcdcdc;
    line-height: 1;
    flex-shrink: 0;
}

.most-viewed a {
    color: #121212;
}

.most-viewed a:hover {
    color: #052962;
}

/* NEWSLETTER */
.newsletter-widget {
    background-color: #f6f6f6;
    padding: 14px;
    border-top: 3px solid #052962;
}

.newsletter-widget p {
    font-size: 13px;
    color: #555555;
    margin-bottom: 10px;
}

.email-input {
    width: 100%;
    padding: 9px 10px;
    font-size: 13px;
    border: 1px solid #dcdcdc;
    margin-bottom: 8px;
    outline: none;
}

.email-input:focus {
    border-color: #052962;
}

.subscribe-btn {
    width: 100%;
    background-color: #052962;
    color: #ffffff;
    border: none;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.subscribe-btn:hover {
    background-color: #021e47;
}

/* SOCIAL LINKS */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-btn {
    display: block;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    border-radius: 2px;
    transition: opacity 0.2s;
}

.social-btn:hover {
    opacity: 0.85;
    text-decoration: none;
}

.fb { background-color: #1877f2; }
.tw { background-color: #000000; }
.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.yt { background-color: #ff0000; }

/* ================================
   FOOTER
   ================================ */
.footer {
    background-color: #052962;
    color: #ffffff;
    margin-top: 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.footer-logo {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 6px;
}

.footer-col a {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom {
    background-color: #021e47;
    text-align: center;
    padding: 12px 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

/* ================================
   RESPONSIVE - TABLET & MOBILE
   ================================ */
@media (max-width: 900px) {
    .top-stories {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .opinion-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .header-logo a {
        font-size: 28px;
    }

    .top-nav {
        display: none;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .opinion-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
/* ================================
   ARTICLE PAGE
   ================================ */
.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.breadcrumb {
    font-size: 12px;
    color: #767676;
    margin-bottom: 14px;
}

.breadcrumb a {
    color: #052962;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-headline {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin: 10px 0 14px 0;
    color: #121212;
}

.article-standfirst {
    font-size: 18px;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 16px;
    font-weight: 400;
    border-left: 3px solid #052962;
    padding-left: 14px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.article-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #052962, #1a6eb5);
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-size: 14px;
    color: #121212;
}

.author-title {
    display: block;
    font-size: 12px;
    color: #767676;
}

.article-meta-right {
    text-align: right;
}

.article-date {
    display: block;
    font-size: 12px;
    color: #767676;
    margin-bottom: 8px;
}

.article-share {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.share-btn {
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    color: #ffffff;
    transition: opacity 0.2s;
}

.share-btn:hover {
    opacity: 0.85;
}

.fb-share { background-color: #1877f2; }
.tw-share { background-color: #000000; }
.copy-share { background-color: #767676; }

.article-img {
    width: 100%;
    height: 420px;
    margin-bottom: 8px;
}

.img-caption {
    font-size: 12px;
    color: #767676;
    margin-bottom: 24px;
    font-style: italic;
}

.article-body p {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 17px;
    line-height: 1.8;
    color: #121212;
    margin-bottom: 20px;
}

.article-subheading {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #121212;
    margin: 28px 0 14px 0;
    border-left: 3px solid #c70000;
    padding-left: 12px;
}

.article-quote {
    border-left: 4px solid #052962;
    margin: 24px 0;
    padding: 16px 20px;
    background-color: #f6f6f6;
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 19px;
    font-style: italic;
    color: #121212;
    line-height: 1.5;
}

.article-quote cite {
    display: block;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    color: #052962;
    margin-top: 10px;
}

.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.tag-title {
    font-size: 13px;
    font-weight: 700;
    color: #767676;
}

.article-tag {
    background-color: #f6f6f6;
    border: 1px solid #dcdcdc;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #052962;
    border-radius: 2px;
    transition: background 0.2s;
}

.article-tag:hover {
    background-color: #052962;
    color: #ffffff;
    text-decoration: none;
}

.more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.more-card {
    border-top: 3px solid #dcdcdc;
    padding-top: 10px;
    cursor: pointer;
}

.more-card h4 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin: 6px 0;
    color: #121212;
}

.more-card:hover h4 {
    color: #052962;
}

@media (max-width: 900px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .more-grid {
        grid-template-columns: 1fr;
    }

    .article-meta {
        flex-direction: column;
    }

    .article-meta-right {
        text-align: left;
    }

    .article-share {
        justify-content: flex-start;
    }
}
/* ================================
   ABOUT PAGE
   ================================ */
.about-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.about-hero {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    margin-bottom: 24px;
}

.about-hero-text h1 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
}

.about-hero-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-top: 4px;
}

.about-section {
    margin-bottom: 10px;
}

.about-p {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 16px;
    line-height: 1.8;
    color: #121212;
    margin-bottom: 16px;
}

/* VALUES */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.value-card {
    background-color: #f6f6f6;
    padding: 20px;
    border-top: 3px solid #052962;
}

.value-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.value-card h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #052962;
}

.value-card p {
    font-size: 13px;
    color: #555555;
    line-height: 1.5;
}

/* TEAM */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.team-card {
    text-align: center;
    padding: 16px;
    border-top: 3px solid #dcdcdc;
    transition: border-color 0.2s;
}

.team-card:hover {
    border-top-color: #052962;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 12px auto;
}

.team-card h4 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #c70000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-card p {
    font-size: 12px;
    color: #555555;
    line-height: 1.4;
}

/* FACTS LIST */
.facts-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.facts-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #dcdcdc;
    font-size: 13px;
}

.facts-list li:last-child {
    border-bottom: none;
}

.fact-label {
    color: #767676;
    font-weight: 600;
}

.fact-value {
    font-weight: 700;
    color: #052962;
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}
/* ================================
   CONTACT PAGE
   ================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-title {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 12px;
}

.contact-intro {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-section {
    margin-bottom: 10px;
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: #121212;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #dcdcdc;
    outline: none;
    font-family: 'Source Sans 3', Arial, sans-serif;
    transition: border-color 0.2s;
    border-radius: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #052962;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    padding: 0;
}

.checkbox-label {
    font-size: 13px;
    font-weight: 400 !important;
    color: #555555;
    cursor: pointer;
}

.contact-submit-btn {
    background-color: #052962;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s;
    align-self: flex-start;
}

.contact-submit-btn:hover {
    background-color: #c70000;
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-success {
    display: none;
    background-color: #1a5c38;
    color: #ffffff;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 2px;
}

/* TIP BOX */
.tip-box {
    display: flex;
    gap: 16px;
    background-color: #f6f6f6;
    border-left: 4px solid #052962;
    padding: 20px;
}

.tip-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.tip-text h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: #052962;
    margin-bottom: 8px;
}

.tip-text p {
    font-size: 13px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* CONTACT INFO LIST */
.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #dcdcdc;
    align-items: flex-start;
}

.contact-info-list li:last-child {
    border-bottom: none;
}

.contact-info-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-list strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #052962;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-list p {
    font-size: 13px;
    color: #555555;
    line-height: 1.5;
    margin: 0;
}

/* DEPARTMENTS */
.dept-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dept-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #dcdcdc;
    flex-wrap: wrap;
    gap: 4px;
}

.dept-list li:last-child {
    border-bottom: none;
}

.dept-name {
    font-size: 13px;
    font-weight: 700;
    color: #121212;
}

.dept-email {
    font-size: 12px;
    color: #052962;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
/* ================================
   SEARCH BAR
   ================================ */
.search-bar-wrap {
    display: none;
    background-color: #021e47;
    padding: 12px 20px;
}

.search-bar-wrap.active {
    display: block;
}

.search-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-bar-inner input {
    flex: 1;
    padding: 10px 16px;
    font-size: 15px;
    border: none;
    outline: none;
    border-radius: 2px;
    font-family: 'Source Sans 3', Arial, sans-serif;
}

.search-bar-inner input:focus {
    outline: 2px solid #c70000;
}

#searchClearBtn {
    background: none;
    border: 1px solid rgba(255,255,255,0.4);
    color: #ffffff;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 2px;
    font-size: 14px;
}

#searchClearBtn:hover {
    background: rgba(255,255,255,0.1);
}

.search-results-count {
    font-size: 13px;
    color: #767676;
    padding: 10px 0;
    grid-column: 1 / -1;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #767676;
    font-size: 15px;
}
/* SHARE BUTTONS */
.wa-share    { background-color: #25d366; }
.email-share { background-color: #c70000; }
/* ================================
   COMMENTS SECTION
   ================================ */
.comments-section {
    margin-top: 30px;
    border-top: 3px solid #052962;
    padding-top: 20px;
}

.comments-section h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #052962;
    margin-bottom: 20px;
}

.comment-form {
    background-color: #f6f6f6;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #052962;
}

.comment-form h4 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 16px;
}

.comment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #dcdcdc;
    outline: none;
    font-family: 'Source Sans 3', Arial, sans-serif;
    border-radius: 2px;
    transition: border-color 0.2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #052962;
}

.comment-form textarea {
    resize: vertical;
    min-height: 100px;
    margin-bottom: 12px;
}

.comment-submit-btn {
    background-color: #052962;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s;
}

.comment-submit-btn:hover {
    background-color: #c70000;
}

.comment-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-card {
    border-top: 1px solid #dcdcdc;
    padding-top: 16px;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #052962, #1a6eb5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.comment-author {
    font-size: 14px;
    font-weight: 700;
    color: #121212;
}

.comment-date {
    font-size: 12px;
    color: #767676;
}

.comment-text {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
    margin-left: 52px;
}

.comment-likes {
    margin-left: 52px;
    margin-top: 8px;
}

.like-btn {
    background: none;
    border: 1px solid #dcdcdc;
    padding: 4px 12px;
    font-size: 12px;
    cursor: pointer;
    border-radius: 2px;
    color: #767676;
    transition: all 0.2s;
}

.like-btn:hover {
    background-color: #052962;
    color: #ffffff;
    border-color: #052962;
}

.no-comments {
    text-align: center;
    padding: 30px;
    color: #767676;
    font-size: 14px;
    background-color: #f6f6f6;
    border-radius: 2px;
}

.comment-success {
    display: none;
    background-color: #1a5c38;
    color: #ffffff;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 2px;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .comment-form-row {
        grid-template-columns: 1fr;
    }
}