/* =========================================================
   PNC FEYDHOO UTHURU
   FULL WEBSITE CSS
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --primary: #40E0CC;
    --primary-dark: #20B8A7;
    --primary-light: #E8FAF7;

    --dark: #102A2A;
    --dark-2: #163B3A;
    --dark-3: #0B2020;

    --text: #334B4A;
    --muted: #6D8280;

    --white: #FFFFFF;

    --background: #F7FBFA;
    --background-light: #F0F8F7;

    --border: #D9EAE7;

    --shadow-small: 0 5px 20px rgba(16, 42, 42, 0.06);
    --shadow: 0 12px 35px rgba(16, 42, 42, 0.09);
    --shadow-large: 0 20px 50px rgba(16, 42, 42, 0.12);

    --radius-small: 6px;
    --radius: 10px;
    --radius-large: 16px;

    --container: 1200px;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;

    font-family: "Inter", Arial, sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button {
    font: inherit;
}

main {
    display: block;
}


/* =========================================================
   GENERAL
========================================================= */

.container {
    width: min(92%, var(--container));
    margin-inline: auto;
}

.section {
    padding: 100px 0;
}

.section-light {
    background: var(--background);
}

.section-dark {
    color: var(--white);
    background: var(--dark);
}

h1,
h2,
h3,
h4 {
    margin: 0;

    color: var(--dark);

    line-height: 1.15;
}

h2 {
    font-size: clamp(34px, 4vw, 50px);
    letter-spacing: -1.7px;
}

p {
    margin: 0;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-label {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--primary-dark);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.section-dark .section-label {
    color: var(--primary);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 54px;
}

.section-heading p {
    margin-top: 18px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.8;
}

.section-heading-light p {
    color: rgba(255, 255, 255, 0.66);
}

.large-text {
    color: var(--dark);

    font-size: 20px;
    line-height: 1.85;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.98);

    border-bottom: 1px solid var(--border);

    transition:
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-small);
}

.nav-container {
    min-height: 82px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 28px;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}

.site-logo {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.site-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1.25;

    white-space: nowrap;
}

.brand-text strong {
    color: var(--primary-dark);

    font-size: 14px;
    font-weight: 800;
}

.brand-text span {
    margin-top: 3px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 500;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    display: flex;

    align-items: center;

    gap: 23px;
}

.main-nav > a:not(.portal-button) {
    position: relative;

    padding: 29px 0;

    color: var(--dark);

    font-size: 12px;
    font-weight: 600;
}

.main-nav > a:not(.portal-button)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 19px;

    width: 0;
    height: 2px;

    background: var(--primary-dark);

    transition: width 0.2s ease;
}

.main-nav > a:not(.portal-button):hover,
.main-nav > a.active-nav {
    color: var(--primary-dark);
}

.main-nav > a:not(.portal-button):hover::after,
.main-nav > a.active-nav::after {
    width: 100%;
}

.language-switch {
    display: flex;

    align-items: center;

    gap: 6px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 800;
}

.language-switch a {
    color: var(--muted);
}

.language-switch a.active,
.language-switch a:hover {
    color: var(--primary-dark);
}

.language-switch span {
    color: var(--border);
}

.portal-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 11px 15px;

    color: var(--white);
    background: var(--dark);

    border-radius: 6px;

    font-size: 11px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.portal-button:hover {
    background: var(--primary-dark);

    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;

    padding: 6px;

    border: 0;

    color: var(--dark);
    background: transparent;

    font-size: 25px;

    cursor: pointer;
}


/* =========================================================
   HOMEPAGE BANNER
========================================================= */

.community-banner {
    position: relative;

    width: 100%;
    height: 520px;

    overflow: hidden;

    background: var(--dark);
}

.community-banner > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}

.community-banner::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(7, 35, 34, 0.52) 0%,
        rgba(7, 35, 34, 0.32) 32%,
        rgba(7, 35, 34, 0.12) 58%,
        rgba(7, 35, 34, 0) 82%
    );
}

.community-banner-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    display: flex;

    align-items: flex-end;

    padding-bottom: 64px;
}

.banner-content {
    width: min(92%, var(--container));

    margin-inline: auto;
}

.banner-label {
    display: inline-block;

    margin-bottom: 13px;
    padding: 7px 11px;

    color: var(--primary);
    background: rgba(8, 35, 34, 0.72);

    border-radius: 4px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2.2px;

    text-transform: uppercase;
}

.community-banner h1 {
    color: var(--white);

    font-size: clamp(55px, 7vw, 88px);
    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -4px;

    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.community-banner p {
    margin-top: 14px;

    color: rgba(255, 255, 255, 0.94);

    font-size: 23px;
    font-weight: 500;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   HOMEPAGE INTRO
========================================================= */

.hero-intro {
    padding: 72px 0 80px;

    background: var(--white);

    border-bottom: 1px solid var(--border);
}

.intro-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;
}

.hero-description {
    max-width: 610px;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 22px;

    border-radius: 6px;

    font-size: 12px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--dark);
    background: var(--primary);
}

.button-primary:hover {
    color: var(--white);
    background: var(--primary-dark);
}

.button-outline {
    color: var(--dark);
    background: transparent;

    border: 1px solid var(--dark);
}

.button-outline:hover {
    color: var(--white);
    background: var(--dark);
}


/* =========================================================
   QUICK LINKS
========================================================= */

.quick-links {
    color: var(--white);
    background: var(--dark);
}

.quick-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.quick-card {
    min-height: 190px;

    padding: 32px 28px;

    border-right: 1px solid rgba(255, 255, 255, 0.10);

    transition: background 0.2s ease;
}

.quick-card:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.10);
}

.quick-card:hover {
    background: var(--dark-2);
}

.quick-icon {
    display: block;

    margin-bottom: 18px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.quick-card h3 {
    color: var(--white);

    font-size: 19px;
}

.quick-card p {
    margin-top: 9px;

    color: rgba(255, 255, 255, 0.60);

    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   HOMEPAGE ABOUT
========================================================= */

.about-section {
    background: var(--white);
}

.about-home-grid {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 90px;
}

.about-home-heading h2 {
    max-width: 500px;
}

.about-home-content {
    max-width: 680px;
}

.about-home-content .large-text {
    margin-bottom: 22px;
}

.about-home-content p:not(.large-text) {
    margin-bottom: 18px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.85;
}

.about-home-content strong {
    color: var(--dark);
}


/* =========================================================
   HOME FACTS
========================================================= */

.home-facts-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 68px;

    overflow: hidden;

    background: var(--primary);

    border-radius: var(--radius-large);
}

.home-fact {
    min-height: 205px;

    padding: 34px 30px;

    border-right: 1px solid rgba(16, 42, 42, 0.14);
}

.home-fact:last-child {
    border-right: 0;
}

.home-fact strong {
    display: block;

    color: var(--dark);

    font-size: 38px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: -1.5px;
}

.home-fact span {
    display: block;

    margin-top: 15px;

    color: var(--dark);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.home-fact p {
    margin-top: 12px;

    color: rgba(16, 42, 42, 0.69);

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   HOME REPRESENTATION
========================================================= */

.home-representation {
    padding: 100px 0;

    background: var(--dark);
}

.home-representation-grid {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 80px;

    align-items: center;
}

.home-representation-heading .section-label {
    color: var(--primary);
}

.home-representation-heading h2 {
    color: var(--white);
}

.home-representation-heading p {
    max-width: 410px;

    margin-top: 18px;

    color: rgba(255, 255, 255, 0.60);

    font-size: 14px;
    line-height: 1.8;
}

.home-mp-card {
    display: grid;

    grid-template-columns: 220px 1fr;

    overflow: hidden;

    background: var(--dark-2);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: var(--radius-large);
}

.home-mp-photo {
    min-height: 320px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--primary);

    background: linear-gradient(
        145deg,
        rgba(64, 224, 204, 0.18),
        rgba(255, 255, 255, 0.04)
    );

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.home-mp-photo.real-photo {
    display: block;
}

.home-mp-photo.real-photo img {
    width: 100%;
    height: 100%;

    min-height: 320px;

    object-fit: cover;
    object-position: center top;
}

.home-mp-info {
    padding: 38px;
}

.home-mp-position {
    display: block;

    color: var(--primary);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.7px;
}

.home-mp-info h3 {
    margin-top: 10px;

    color: var(--white);

    font-size: 30px;

    letter-spacing: -1px;
}

.home-mp-info p {
    margin-top: 15px;

    color: rgba(255, 255, 255, 0.64);

    font-size: 13px;
    line-height: 1.75;
}

.home-mp-link {
    display: inline-block;

    margin-top: 22px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.home-mp-link:hover {
    color: var(--white);
}


/* =========================================================
   TEXT LINKS
========================================================= */

.text-link {
    display: inline-block;

    margin-top: 18px;

    color: var(--dark);

    font-size: 11px;
    font-weight: 800;
}

.text-link:hover {
    color: var(--primary-dark);
}


/* =========================================================
   NEWS
========================================================= */

.editorial-news-grid {
    display: grid;

    grid-template-columns: 1.45fr 0.8fr;

    gap: 30px;
}

.featured-news-card {
    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-large);

    box-shadow: var(--shadow-small);
}

.featured-news-image {
    aspect-ratio: 16 / 8;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--primary-dark);

    background: linear-gradient(
        135deg,
        var(--primary-light),
        var(--background-light)
    );

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.featured-news-content {
    padding: 30px;
}

.news-category {
    color: var(--primary-dark);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.news-date {
    float: right;

    color: var(--muted);

    font-size: 10px;
}

.featured-news-content h3 {
    margin-top: 15px;

    font-size: 28px;
}

.featured-news-content p {
    margin-top: 12px;

    color: var(--muted);

    font-size: 14px;
}

.secondary-news {
    display: flex;

    flex-direction: column;

    gap: 24px;
}

.news-card {
    display: grid;

    grid-template-columns: 135px 1fr;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-small);
}

.news-image {
    min-height: 190px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--primary-dark);
    background: var(--primary-light);

    font-size: 9px;
    font-weight: 800;
}

.news-content {
    padding: 22px;
}

.news-content h3 {
    margin-top: 10px;

    font-size: 18px;
}

.news-content p {
    margin-top: 8px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   ACTIVITIES
========================================================= */

.activity-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.activity-card {
    overflow: hidden;

    background: var(--dark-2);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: var(--radius-large);
}

.activity-image {
    aspect-ratio: 16 / 10;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--primary);

    background: linear-gradient(
        135deg,
        rgba(64, 224, 204, 0.18),
        rgba(255, 255, 255, 0.04)
    );

    font-size: 9px;
    font-weight: 800;
}

.activity-content {
    padding: 25px;
}

.activity-date {
    color: var(--primary);

    font-size: 9px;
    font-weight: 800;
}

.activity-content h3 {
    margin-top: 10px;

    color: var(--white);

    font-size: 21px;
}

.activity-content p {
    margin-top: 9px;

    color: rgba(255, 255, 255, 0.60);

    font-size: 12px;
    line-height: 1.7;
}


/* Reduce the transition space between Representation and Activities */
.activities-news-section {
    padding-top: 28px;
    background: #133332;
    border-top: 1px solid rgba(64, 224, 204, 0.10);
}

/* Combined Activities + News */
.section-anchor {
    position: relative;
    top: -90px;
    visibility: hidden;
}

.activity-image {
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.035);
}

.activity-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
}

.activity-link:hover {
    color: var(--white);
}

.activity-more-card {
    display: flex;
    align-items: center;
    min-height: 100%;
    background: linear-gradient(135deg, rgba(64, 224, 204, 0.18), var(--dark-2));
}

.activity-more-card .activity-content {
    padding: 34px;
}

/* =========================================================
   LEADERSHIP
========================================================= */

.leadership-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.person-card {
    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);
}

.person-photo {
    aspect-ratio: 1 / 1.1;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--primary-dark);

    background: linear-gradient(
        145deg,
        var(--background-light),
        var(--primary-light)
    );

    font-size: 9px;
    font-weight: 800;
}

.person-info {
    padding: 20px;
}

.person-info span {
    color: var(--primary-dark);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}

.person-info h3 {
    margin-top: 7px;

    font-size: 18px;
}


/* =========================================================
   PRIORITIES
========================================================= */

.priority-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.priority-card {
    min-height: 245px;

    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);
}

.priority-card > span {
    color: var(--primary-dark);

    font-size: 11px;
    font-weight: 800;
}

.priority-card h3 {
    margin-top: 45px;

    font-size: 21px;
}

.priority-card p {
    margin-top: 10px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   EVENTS
========================================================= */

.events-list {
    border-top: 1px solid var(--border);
}

.event-row {
    display: grid;

    grid-template-columns: 120px 1fr auto;

    align-items: center;

    gap: 30px;

    padding: 28px 0;

    border-bottom: 1px solid var(--border);
}

.event-date {
    display: flex;

    flex-direction: column;
}

.event-date strong {
    color: var(--dark);

    font-size: 34px;

    line-height: 1;
}

.event-date span {
    margin-top: 6px;

    color: var(--primary-dark);

    font-size: 9px;
    font-weight: 800;
}

.event-details > span {
    color: var(--primary-dark);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.event-details h3 {
    margin-top: 5px;

    font-size: 20px;
}

.event-details p {
    margin-top: 4px;

    color: var(--muted);

    font-size: 12px;
}

.event-button {
    color: var(--dark);

    font-size: 11px;
    font-weight: 800;
}

.event-button:hover {
    color: var(--primary-dark);
}


/* =========================================================
   PUBLICATIONS
========================================================= */

.publication-list {
    border-top: 1px solid var(--border);
}

.publication-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 25px 5px;

    border-bottom: 1px solid var(--border);
}

.publication-row span {
    color: var(--primary-dark);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.publication-row h3 {
    margin-top: 5px;

    font-size: 19px;
}

.publication-row strong {
    color: var(--primary-dark);

    font-size: 20px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    color: var(--white);
    background: var(--dark);
}

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.contact-section h2 {
    color: var(--white);
}

.contact-section p {
    max-width: 560px;

    margin-top: 20px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 15px;
    line-height: 1.8;
}

.contact-card {
    padding: 35px;

    background: var(--dark-2);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: var(--radius-large);
}

.contact-item {
    padding: 20px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item:first-child {
    padding-top: 0;
}

.contact-item:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}

.contact-item span {
    display: block;

    color: var(--primary);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.contact-item strong {
    display: block;

    margin-top: 6px;

    color: var(--white);

    font-size: 14px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    color: var(--white);
    background: var(--dark-3);
}

.footer-grid {
    display: grid;

    grid-template-columns: 1fr auto;

    gap: 50px;

    padding: 52px 0;
}

.footer-brand {
    display: flex;

    align-items: center;

    gap: 12px;
}

.footer-brand .site-logo {
    width: 44px;
    height: 44px;
}

.footer-brand strong {
    display: block;

    font-size: 13px;
}

.footer-brand span {
    display: block;

    margin-top: 2px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 10px;
}

.footer-grid > div > p {
    margin-top: 18px;

    color: rgba(255, 255, 255, 0.44);

    font-size: 11px;
}

.footer-links {
    display: flex;

    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 12px 24px;

    max-width: 420px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);

    font-size: 11px;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom .container {
    padding: 18px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.34);

    font-size: 9px;
}


/* =========================================================
   ABOUT PAGE HERO
========================================================= */

.about-page-hero {
    padding: 110px 0 100px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(64, 224, 204, 0.10),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #102A2A 0%,
            #163B3A 65%,
            #1C504B 100%
        );
}

.about-page-label {
    display: inline-block;

    margin-bottom: 17px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.about-page-hero h1 {
    max-width: 900px;

    color: var(--white);

    font-size: clamp(50px, 7vw, 82px);
    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -4px;
}

.about-page-hero p {
    max-width: 660px;

    margin-top: 24px;

    color: rgba(255, 255, 255, 0.74);

    font-size: 19px;
    line-height: 1.7;
}


/* =========================================================
   ABOUT INTRO
========================================================= */

.about-main-section {
    background: var(--white);
}

.about-intro-grid {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 100px;
}

.about-intro-heading h2 {
    max-width: 500px;
}

.about-intro-text {
    max-width: 700px;
}

.about-intro-text p {
    margin-bottom: 20px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.85;
}

.about-intro-text p:last-child {
    margin-bottom: 0;
}

.about-intro-text .about-lead {
    color: var(--dark);

    font-size: 20px;
    line-height: 1.85;
}

.about-intro-text strong {
    color: var(--dark);
}


/* =========================================================
   ABOUT FACTS
========================================================= */

.constituency-facts {
    background: var(--primary);
}

.facts-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.fact-card {
    min-height: 220px;

    padding: 36px 30px;

    border-right: 1px solid rgba(16, 42, 42, 0.15);
}

.fact-card:first-child {
    border-left: 1px solid rgba(16, 42, 42, 0.15);
}

.fact-number {
    display: block;

    color: var(--dark);

    font-size: 41px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: -2px;
}

.fact-title {
    display: block;

    margin-top: 15px;

    color: var(--dark);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.fact-card p {
    max-width: 210px;

    margin-top: 13px;

    color: rgba(16, 42, 42, 0.70);

    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   ABOUT COMMUNITY
========================================================= */

.about-content-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;
}

.about-content-copy {
    max-width: 700px;
}

.about-content-copy p {
    margin-bottom: 22px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.9;
}

.about-content-copy p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ROLE CARDS
========================================================= */

.role-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.role-card {
    min-height: 290px;

    padding: 30px;

    background: var(--background);

    border: 1px solid var(--border);

    border-radius: var(--radius);
}

.role-number {
    display: block;

    color: var(--primary-dark);

    font-size: 10px;
    font-weight: 800;
}

.role-card h3 {
    margin-top: 62px;

    font-size: 20px;
}

.role-card p {
    margin-top: 14px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   DISTRICTS
========================================================= */

.district-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 24px;
}

.district-card {
    display: grid;

    grid-template-columns: 86px 1fr;

    min-height: 240px;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-large);

    box-shadow: var(--shadow-small);
}

.district-number {
    display: flex;

    align-items: flex-start;
    justify-content: center;

    padding-top: 35px;

    color: var(--dark);
    background: var(--primary);

    font-size: 14px;
    font-weight: 800;
}

.district-content {
    padding: 35px 34px;
}

.district-content span {
    color: var(--primary-dark);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.district-content h3 {
    margin-top: 10px;

    font-size: 25px;

    letter-spacing: -0.8px;
}

.district-content p {
    margin-top: 14px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   ABOUT REPRESENTATION
========================================================= */

.representation-section {
    padding: 100px 0;

    background: var(--dark);
}

.representation-grid {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 90px;
}

.representation-title .section-label {
    color: var(--primary);
}

.representation-title h2 {
    color: var(--white);
}

.representation-description {
    max-width: 410px;

    margin-top: 20px;

    color: rgba(255, 255, 255, 0.61);

    font-size: 14px;
    line-height: 1.8;
}

.representation-card {
    display: grid;

    grid-template-columns: 230px 1fr;

    overflow: hidden;

    background: var(--dark-2);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: var(--radius-large);
}

.representative-photo {
    min-height: 340px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--primary);

    background: linear-gradient(
        145deg,
        rgba(64, 224, 204, 0.18),
        rgba(255, 255, 255, 0.04)
    );

    font-size: 9px;
    font-weight: 800;
}

.representative-photo.real-photo {
    display: block;
}

.representative-photo.real-photo img {
    width: 100%;
    height: 100%;

    min-height: 340px;

    object-fit: cover;
    object-position: center top;
}

.representative-info {
    padding: 42px;
}

.representative-position {
    display: block;

    color: var(--primary);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.representative-info h3 {
    margin-top: 10px;

    color: var(--white);

    font-size: 31px;

    letter-spacing: -1px;
}

.representative-info p {
    margin-top: 17px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   APPROACH
========================================================= */

.approach-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--border);
}

.approach-item {
    min-height: 225px;

    padding: 35px 35px 35px 0;

    border-right: 1px solid var(--border);
}

.approach-item + .approach-item {
    padding-left: 35px;
}

.approach-item:last-child {
    border-right: 0;
}

.approach-item strong {
    display: block;

    color: var(--dark);

    font-size: 23px;

    letter-spacing: -0.7px;
}

.approach-item p {
    margin-top: 15px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   ABOUT CLOSING
========================================================= */

.about-closing {
    padding: 105px 0;

    background: var(--background);
}

.about-closing-inner {
    max-width: 850px;
}

.about-closing h2 {
    max-width: 760px;

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.05;

    letter-spacing: -2.3px;
}

.about-closing p {
    max-width: 700px;

    margin-top: 23px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.85;
}

.about-closing-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


/* =========================================================
   SMALL DESKTOP
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 15px;
    }

    .main-nav > a:not(.portal-button) {
        font-size: 11px;
    }

    .portal-button {
        padding: 9px 11px;
    }

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

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


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .about-home-grid,
    .about-intro-grid,
    .about-content-grid,
    .representation-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .home-representation-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

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

    .home-fact:nth-child(2),
    .fact-card:nth-child(2) {
        border-right: 0;
    }

    .home-fact:nth-child(1),
    .home-fact:nth-child(2),
    .fact-card:nth-child(1),
    .fact-card:nth-child(2) {
        border-bottom: 1px solid rgba(16, 42, 42, 0.14);
    }

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

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

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

    .approach-item {
        min-height: auto;

        padding: 30px 0;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .approach-item + .approach-item {
        padding-left: 0;
    }

    .approach-item:last-child {
        border-bottom: 0;
    }
}


/* =========================================================
   MOBILE NAV + LAYOUT
========================================================= */

@media (max-width: 800px) {

    .section {
        padding: 70px 0;
    }

    .nav-container {
        min-height: 72px;
    }

    .mobile-menu-button {
        display: block;
    }

    .main-nav {
        position: absolute;

        top: 72px;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 12px 5% 24px;

        background: var(--white);

        border-bottom: 1px solid var(--border);

        box-shadow: var(--shadow);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav > a:not(.portal-button) {
        padding: 13px 0;

        border-bottom: 1px solid var(--border);

        font-size: 13px;
    }

    .main-nav > a:not(.portal-button)::after {
        display: none;
    }

    .language-switch {
        padding: 14px 0;
    }

    .portal-button {
        margin-top: 9px;

        text-align: center;
    }


    /* BANNER */

    .community-banner {
        height: 420px;
    }

    .community-banner > img {
        object-position: 50% center;
    }

    .community-banner::after {
        background: linear-gradient(
            0deg,
            rgba(7, 35, 34, 0.80) 0%,
            rgba(7, 35, 34, 0.45) 32%,
            rgba(7, 35, 34, 0.10) 64%,
            rgba(7, 35, 34, 0) 100%
        );
    }

    .community-banner-overlay {
        padding-bottom: 38px;
    }

    .community-banner h1 {
        font-size: 49px;

        letter-spacing: -2px;
    }

    .community-banner p {
        margin-top: 8px;

        font-size: 19px;
    }


    /* HOME */

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .hero-intro {
        padding: 60px 0 70px;
    }

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

    .quick-card {
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

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

    .secondary-news {
        display: grid;

        grid-template-columns: 1fr 1fr;
    }

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

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

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

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

    .event-row {
        grid-template-columns: 80px 1fr;

        gap: 20px;
    }

    .event-button {
        grid-column: 2;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

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

    .footer-links {
        justify-content: flex-start;
    }


    /* ABOUT */

    .about-page-hero {
        padding: 82px 0 76px;
    }

    .about-page-hero h1 {
        letter-spacing: -3px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .about-page-hero {
        padding: 68px 0 64px;
    }

    .about-page-label {
        font-size: 9px;
    }

    .about-page-hero h1 {
        font-size: 43px;

        line-height: 1.02;

        letter-spacing: -2px;
    }

    .about-page-hero p {
        margin-top: 18px;

        font-size: 15px;
    }

    .about-intro-text .about-lead {
        font-size: 18px;
    }

    .about-intro-text p {
        font-size: 14px;
    }

    .home-facts-grid,
    .facts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-fact {
        min-height: 175px;

        padding: 25px 18px;
    }

    .home-fact strong {
        font-size: 29px;
    }

    .fact-card {
        min-height: 185px;

        padding: 27px 20px;
    }

    .fact-number {
        font-size: 30px;
    }

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

    .role-card {
        min-height: auto;
    }

    .role-card h3 {
        margin-top: 35px;
    }

    .district-card {
        grid-template-columns: 60px 1fr;

        min-height: 215px;
    }

    .district-number {
        padding-top: 28px;
    }

    .district-content {
        padding: 27px 22px;
    }

    .district-content h3 {
        font-size: 21px;
    }

    .home-mp-card,
    .representation-card {
        grid-template-columns: 1fr;
    }

    .home-mp-photo,
    .home-mp-photo.real-photo img {
        min-height: 330px;
    }

    .representative-photo,
    .representative-photo.real-photo img {
        min-height: 330px;
    }

    .home-mp-info,
    .representative-info {
        padding: 28px;
    }

    .home-mp-info h3,
    .representative-info h3 {
        font-size: 27px;
    }

    .about-closing {
        padding: 75px 0;
    }

    .about-closing h2 {
        font-size: 38px;

        letter-spacing: -1.4px;
    }

    .about-closing-buttons {
        flex-direction: column;
    }

    .about-closing-buttons .button {
        width: 100%;
    }
}


/* =========================================================
   SMALL PHONE
========================================================= */

@media (max-width: 500px) {

    .container {
        width: 90%;
    }

    .brand {
        gap: 9px;
    }

    .site-logo {
        width: 40px;
        height: 40px;
    }

    .brand-text strong {
        font-size: 12px;
    }

    .brand-text span {
        font-size: 8px;
    }


    /* HOMEPAGE BANNER */

    .community-banner {
        height: 350px;
    }

    .community-banner > img {
        object-position: 50% center;
    }

    .community-banner-overlay {
        padding-bottom: 30px;
    }

    .banner-content {
        width: 90%;
    }

    .banner-label {
        margin-bottom: 9px;

        padding: 6px 9px;

        font-size: 8px;

        letter-spacing: 1.4px;
    }

    .community-banner h1 {
        font-size: 39px;

        letter-spacing: -1.5px;
    }

    .community-banner p {
        font-size: 17px;
    }


    /* GENERAL */

    .section {
        padding: 60px 0;
    }

    h2 {
        font-size: 34px;
    }


    /* BUTTONS */

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }


    /* QUICK LINKS */

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

    .quick-card {
        min-height: auto;
    }


    /* NEWS */

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

    .featured-news-content {
        padding: 23px;
    }

    .featured-news-content h3 {
        font-size: 23px;
    }


    /* LEADERSHIP */

    .leadership-grid {
        grid-template-columns: 1fr 1fr;

        gap: 12px;
    }

    .person-info {
        padding: 14px;
    }

    .person-info h3 {
        font-size: 15px;
    }


    /* PRIORITIES */

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

    .priority-card {
        min-height: auto;
    }

    .priority-card h3 {
        margin-top: 25px;
    }


    /* EVENTS */

    .event-row {
        grid-template-columns: 65px 1fr;

        gap: 15px;
    }


    /* CONTACT */

    .contact-card {
        padding: 25px;
    }


    /* FOOTER */

    .footer-grid {
        padding: 45px 0;
    }
}

/* =========================================================
   LEADERSHIP PAGE - MEMBER GRID ONLY
   Shared sections reuse ABOUT page classes.
========================================================= */

.leadership-members-section {
    background: var(--white);
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.leader-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.leader-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-small);
}

.leader-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--background-light);
}

.leader-photo::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--primary);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.leader-card:hover .leader-photo img {
    transform: scale(1.02);
}

.leader-card-content {
    min-height: 105px;
    padding: 18px 20px 20px;
}

.leader-card-content h3 {
    margin: 0;
    color: var(--dark);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.leader-role {
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 1000px) {

    .leaders-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {

    .leaders-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .leader-card-content {
        min-height: 90px;
        padding: 14px;
    }

    .leader-card-content h3 {
        font-size: 14px;
    }

    .leader-role {
        margin-top: 4px;
        font-size: 10px;
    }
}

@media (max-width: 380px) {

    .leaders-grid {
        gap: 9px;
    }

    .leader-card-content {
        padding: 12px;
    }

    .leader-card-content h3 {
        font-size: 13px;
    }

    .leader-role {
        font-size: 9px;
    }
}
.anis-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.anis-column .leader-card {
    width: 100%;
}

.small-leadership-btn {
    display: inline-block;
    margin-top: 18px;
    margin-left: 0;
    color: var(--dark);
    font-size: 11px;
    font-weight: 800;
}

.small-leadership-btn:hover {
    color: var(--primary-dark);
}

/* =========================================================
   HOME - NEWS & UPDATES
========================================================= */

.home-news-section {
    background: var(--background-light);
}


/* HEADER */

.home-news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;

    margin-bottom: 42px;
}

.home-news-header h2 {
    margin-top: 8px;
}

.home-news-view-all {
    padding-bottom: 5px;

    color: var(--dark);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.3px;

    white-space: nowrap;
}

.home-news-view-all:hover {
    color: var(--primary-dark);
}


/* MAIN GRID */

.home-news-layout {
    display: grid;

    grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.85fr);

    gap: 28px;
}


/* =========================================================
   FEATURED STORY
========================================================= */

.home-news-featured {
    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    box-shadow: var(--shadow-small);
}


.home-news-featured-image {
    position: relative;

    display: block;

    height: 390px;

    overflow: hidden;

    background: var(--primary-light);
}


.home-news-featured-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}


.home-news-featured:hover .home-news-featured-image img {
    transform: scale(1.025);
}


.home-news-badge {
    position: absolute;

    left: 22px;
    bottom: 22px;

    padding: 8px 11px;

    background: var(--primary);
    color: var(--dark);

    border-radius: 4px;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


.home-news-featured-content {
    padding: 34px 36px 38px;
}


/* META */

.home-news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}


.home-news-meta span {
    color: var(--primary-dark);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
}


.home-news-meta time {
    color: var(--muted);

    font-size: 10px;
}


.home-news-featured-content h3 {
    max-width: 650px;

    margin-top: 16px;

    color: var(--dark);

    font-size: clamp(26px, 3vw, 35px);
    line-height: 1.14;
    letter-spacing: -1.2px;
}


.home-news-featured-content p {
    max-width: 650px;

    margin-top: 15px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.75;
}


/* READ LINK */

.home-news-read {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 20px;

    color: var(--dark);

    font-size: 11px;
    font-weight: 800;
}


.home-news-read span {
    transition: transform 0.2s ease;
}


.home-news-read:hover {
    color: var(--primary-dark);
}


.home-news-read:hover span {
    transform: translateX(3px);
}


/* =========================================================
   RIGHT COLUMN
========================================================= */

.home-news-side {
    display: flex;

    flex-direction: column;

    gap: 17px;
}


/* SMALL NEWS */

.home-news-small {
    display: grid;

    grid-template-columns: 145px minmax(0, 1fr);

    min-height: 176px;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.home-news-small:hover {
    transform: translateY(-2px);

    box-shadow: var(--shadow-small);
}


.home-news-small-image {
    display: block;

    overflow: hidden;

    background: var(--primary-light);
}


.home-news-small-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.35s ease;
}


.home-news-small:hover .home-news-small-image img {
    transform: scale(1.04);
}


.home-news-small-content {
    padding: 21px 21px 19px;
}


.home-news-small-content .home-news-meta {
    display: block;
}


.home-news-small-content .home-news-meta time {
    display: block;

    margin-top: 5px;
}


.home-news-small-content h3 {
    margin-top: 12px;

    color: var(--dark);

    font-size: 17px;
    line-height: 1.35;
    letter-spacing: -0.35px;
}


.home-news-small-content .home-news-read {
    margin-top: 13px;

    font-size: 10px;
}


/* =========================================================
   VIEW ALL BOX
========================================================= */

.home-news-more-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    min-height: 92px;

    padding: 20px 23px;

    background: var(--dark);

    border-radius: var(--radius);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.home-news-more-box:hover {
    transform: translateY(-2px);

    background: var(--dark-2);
}


.home-news-more-box div > span {
    display: block;

    margin-bottom: 6px;

    color: var(--primary);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.4px;
}


.home-news-more-box strong {
    color: var(--white);

    font-size: 15px;
    font-weight: 700;
}


.home-news-more-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 36px;

    width: 36px;
    height: 36px;

    background: var(--primary);
    color: var(--dark);

    border-radius: 50%;

    font-size: 18px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

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

    .home-news-side {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 18px;
    }

    .home-news-more-box {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .home-news-header {
        align-items: flex-start;

        margin-bottom: 28px;
    }

    .home-news-view-all {
        display: none;
    }


    .home-news-featured-image {
        height: 240px;
    }


    .home-news-featured-content {
        padding: 25px 22px 28px;
    }


    .home-news-featured-content h3 {
        font-size: 24px;
    }


    .home-news-featured-content p {
        font-size: 13px;
    }


    .home-news-side {
        display: flex;
    }


    .home-news-small {
        grid-template-columns: 110px minmax(0, 1fr);

        min-height: 150px;
    }


    .home-news-small-content {
        padding: 17px;
    }


    .home-news-small-content h3 {
        font-size: 15px;
    }


    .home-news-more-box {
        min-height: 82px;

        padding: 18px;
    }

}

/* Representation -> Activities spacing */
@media (max-width: 800px) {
    .activities-news-section {
        padding-top: 24px;
    }
}

@media (max-width: 500px) {
    .activities-news-section {
        padding-top: 20px;
    }
}
