:root {
  --apcg-primary: #0b5ed7;
  --apcg-primary-dark: #063d93;
  --apcg-navy: #071a3a;
  --apcg-soft: #f5f8fc;
  --apcg-text: #13213c;
  --apcg-muted: #667085;
  --apcg-border: #e8edf5;
  --apcg-radius: 1.25rem;
  --apcg-shadow: 0 18px 55px rgba(19, 33, 60, 0.1);
}

/* Scoped foundation: keeps the old style.css available without letting it control this page. */
html {
  scroll-behavior: smooth;
}

main{
  background-color: var(--apcg-soft)
}

body.apcg-modern-page {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--apcg-text);
  font-family: "Inter", "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.apcg-modern-page *,
.apcg-modern-page *::before,
.apcg-modern-page *::after {
  box-sizing: border-box;
}

.apcg-modern-page a {
  text-decoration: none;
}

.apcg-modern-page img {
  display: block;
  max-width: 100%;
}

.apcg-modern-page main section {
  padding: 0;
  overflow: visible;
  position: relative;
  margin-top: -100px;

}

.apcg-modern-page h1,
.apcg-modern-page h2,
.apcg-modern-page h3,
.apcg-modern-page p {
  margin-top: 0;
}

/* Header compatibility */
.apcg-modern-page .site-header {
  position: relative;
  z-index: 1030;
}



.apcg-modern-page .brand-logo {
  width: 145px;
  height: auto;
}



/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 790px;
  overflow: hidden;
  padding-top: 82px !important;
  background: url('../images/apcg-hero-background.png') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 10, 28, 0.94) 0%,
    rgba(4, 22, 54, 0.73) 44%,
    rgba(4, 22, 54, 0.14) 78%
  );
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-row {
  align-items: center;
  min-height: 70vh;
}

.eyebrow {
  display: inline-block;
  color: var(--apcg-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.62);
}

.hero-title {
  max-width: 760px;
  margin: 1rem 0 1.5rem;
  color: #fff;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-scroll:hover {
  background: #fff;
  color: var(--apcg-navy);
}

/* Buttons */
.apcg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 50px;
  padding: 0.8rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.apcg-button-primary {
  border-color: var(--apcg-primary);
  background: var(--apcg-primary);
  color: #fff;
}

.apcg-button-primary:hover {
  border-color: var(--apcg-primary-dark);
  background: var(--apcg-primary-dark);
  color: #fff;
}

.apcg-button-outline {
  border-color: var(--apcg-primary);
  background: transparent;
  color: var(--apcg-primary);
}

.apcg-button-outline:hover {
  background: var(--apcg-primary);
  color: #fff;
}

.apcg-button-light-outline {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: #fff;
}

.apcg-button-light-outline:hover {
  background: #fff;
  color: var(--apcg-navy);
}

.apcg-button-light {
  border-color: #fff;
  background: #fff;
  color: var(--apcg-navy);
}

.apcg-button-light:hover {
  border-color: #dce7f8;
  background: #dce7f8;
  color: var(--apcg-navy);
}



.content-section-soft {
  background: var(--apcg-soft);
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading h2,
.about-title {
  margin: 0.65rem 0 1rem;
  color: var(--apcg-text);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-heading p,
.about-text {
  margin-bottom: 0;
  color: var(--apcg-muted);
}

/* Feature cards */
.feature-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--apcg-border);
  border-radius: var(--apcg-radius);
  background: #fff;
  color: var(--apcg-text);
  box-shadow: 0 8px 30px rgba(19, 33, 60, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 94, 215, 0.25);
  color: var(--apcg-text);
  box-shadow: var(--apcg-shadow);
}

.icon-wrap {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 1.5rem;
  place-items: center;
  border-radius: 16px;
  background: rgba(11, 94, 215, 0.09);
  color: var(--apcg-primary);
  font-size: 1.45rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
}

.feature-card p {
  flex-grow: 1;
  margin-bottom: 1.25rem;
  color: var(--apcg-muted);
}

.card-link {
  color: var(--apcg-primary);
  font-size: 0.92rem;
  font-weight: 700;
}

.card-link i {
  margin-left: 0.35rem;
}

/* About */
.about-lead {
  margin-bottom: 1.2rem;
  color: #475467;
  font-size: 1.16rem;
  line-height: 1.75;
}

.about-text {
  margin-bottom: 1.75rem;
  line-height: 1.8;
}

.image-panel {
  position: relative;
}

.image-panel::before {
  position: absolute;
  right: -22px;
  bottom: -22px;
  z-index: 0;
  width: 80%;
  height: 80%;
  border-radius: var(--apcg-radius);
  background: linear-gradient(135deg, rgba(11, 94, 215, 0.15), rgba(11, 94, 215, 0.02));
  content: "";
}

.image-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 430px;
  border-radius: var(--apcg-radius);
  object-fit: cover;
  box-shadow: var(--apcg-shadow);
}

/* Stats */
.stats-section {
  padding: 0 0 7rem !important;
  background: var(--apcg-soft);

}

.stats-panel {
  overflow: hidden;
  border: 1px solid #e9eef6;
  border-radius: var(--apcg-radius);
  background: #fff;
  box-shadow: var(--apcg-shadow);
}

.stat-item {
  padding: 2.4rem 1.2rem;
  border-right: 1px solid #edf1f6;
  text-align: center;
}

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

.stat-item i {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--apcg-primary);
  font-size: 1.6rem;
}

.stat-item strong {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 2.1rem;
  line-height: 1;
}

.stat-item span {
  display: block;
  color: var(--apcg-muted);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Team */
.team-count {
  height: 100%;
  padding: 1.5rem 0.75rem;
  border: 1px solid var(--apcg-border);
  border-radius: 1rem;
  background: #fff;
  text-align: center;
}

.count-circle {
  display: grid;
  width: 88px;
  height: 88px;
  margin: 0 auto 1rem;
  place-items: center;
  border: 3px solid var(--apcg-primary);
  border-radius: 50%;
  color: var(--apcg-primary-dark);
  font-size: 1.8rem;
  font-weight: 800;
}

.team-count p {
  margin: 0;
  color: var(--apcg-muted);
  font-size: 0.9rem;
}

.section-action {
  margin-top: 3rem;
  text-align: center;
}

/* CTA */
.cta-section {
  position: relative;
  background:
    linear-gradient(rgba(7, 26, 58, 0.84), rgba(7, 26, 58, 0.95)),
    url('../images/antonio-janeski-CHVTt0aGbx0-unsplash.jpg') center / cover;
  color: #fff;
}

.cta-content {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}

.cta-icon {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.cta-section h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
}

.cta-section p {
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.76);
}

/* Footer */
.site-footer {
  background: #041127;
  color: #fff;
}

.footer-main {
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-summary {
  max-width: 360px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.62);
}

.social-links {
  display: flex;
  gap: 0.65rem;
}

.footer-title {
  margin-bottom: 1.25rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links,
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

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

.footer-links a:hover,
.contact-list a:hover {
  color: #fff;
}

.contact-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.contact-list i {
  flex: 0 0 auto;
  margin-top: 0.15rem;
}

.social-link,
.back-to-top {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
}

.social-link:hover,
.back-to-top:hover {
  background: #fff;
  color: var(--apcg-navy);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.55);
}

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

.apcg-modern-page .latest-news-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.apcg-modern-page .news-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.apcg-modern-page .news-heading .section-title {
    margin-bottom: 1rem;
}

.apcg-modern-page .section-description {
    max-width: 650px;
    margin: 0;
    color: var(--apcg-muted);
    font-size: 1rem;
    line-height: 1.75;
}


/* News card */

.apcg-modern-page .news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    color: var(--apcg-text);
    background-color: #ffffff;
    border: 1px solid #e5eaf1;
    border-radius: 1.25rem;
    box-shadow: 0 10px 35px rgba(19, 33, 60, 0.06);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.apcg-modern-page .news-card:hover {
    color: var(--apcg-text);
    border-color: rgba(11, 94, 215, 0.25);
    box-shadow: 0 22px 55px rgba(19, 33, 60, 0.12);
    transform: translateY(-7px);
}


/* News image */

.apcg-modern-page .news-card-image {
    position: relative;
    display: block;
    height: 235px;
    overflow: hidden;
    background-color: #e9eef5;
}

.apcg-modern-page .news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.apcg-modern-page .news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.apcg-modern-page .news-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    padding: 0.45rem 0.8rem;
    color: #ffffff;
    background-color: rgba(7, 26, 58, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}


/* News content */

.apcg-modern-page .news-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.6rem;
}

.apcg-modern-page .news-date {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
    color: var(--apcg-primary);
    font-size: 0.78rem;
    font-weight: 700;
}

.apcg-modern-page .news-card-title {
    margin: 0 0 1rem;
    color: var(--apcg-text);
    font-size: 1.2rem;
    font-weight: 750;
    line-height: 1.4;
}

.apcg-modern-page .news-card-description {
    display: -webkit-box;
    flex-grow: 1;
    margin: 0 0 1.4rem;
    overflow: hidden;
    color: var(--apcg-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.apcg-modern-page .news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--apcg-primary);
    font-size: 0.88rem;
    font-weight: 700;
}

.apcg-modern-page .news-card-link i {
    transition: transform 0.25s ease;
}

.apcg-modern-page .news-card:hover .news-card-link i {
    transform: translateX(4px);
}


/* Loading and error */

.apcg-modern-page .news-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 150px;
    color: var(--apcg-muted);
    font-size: 0.95rem;
}

.apcg-modern-page .news-error {
    padding: 1.5rem;
    min-height: auto;
    color: #842029;
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
    border-radius: 1rem;
}


/* News placeholder image */

.apcg-modern-page .news-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--apcg-primary);
    background:
        linear-gradient(
            135deg,
            rgba(11, 94, 215, 0.12),
            rgba(7, 26, 58, 0.08)
        );
    font-size: 2.5rem;
}

/* ==================================================
   APCG SOCIAL MEDIA SECTION
================================================== */

.apcg-modern-page .social-section {
    position: relative;

    padding: 7rem 0;

    overflow: hidden;

    color: #ffffff;

    background:
        linear-gradient(
            115deg,
            rgba(3, 14, 35, 0.97) 0%,
            rgba(7, 35, 76, 0.94) 50%,
            rgba(8, 61, 123, 0.88) 100%
        ),
        url("../images/apcg-hero-background.png")
        center 42% / cover no-repeat;
}


/* Soft atmospheric glow */

.apcg-modern-page .social-section::before {
    content: "";

    position: absolute;

    top: -250px;
    right: -150px;

    width: 600px;
    height: 600px;

    background:
        rgba(43, 132, 255, 0.22);

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;
}


/* Decorative light */

.apcg-modern-page .social-section::after {
    content: "";

    position: absolute;

    bottom: -300px;
    left: -200px;

    width: 600px;
    height: 600px;

    background:
        rgba(22, 102, 220, 0.15);

    border-radius: 50%;

    filter: blur(110px);

    pointer-events: none;
}


/* Main content */

.apcg-modern-page .social-section-content {
    position: relative;

    z-index: 2;

    max-width: 1150px;

    margin: auto;

    text-align: center;
}


/* Small heading */

.apcg-modern-page .social-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 0.7rem;

    margin-bottom: 1.2rem;

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

    font-size: 0.76rem;
    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.apcg-modern-page .social-eyebrow::before,
.apcg-modern-page .social-eyebrow::after {
    content: "";

    width: 28px;
    height: 1px;

    background:
        rgba(255, 255, 255, 0.4);
}


/* Heading */

.apcg-modern-page .social-section h2 {
    margin: 0 0 1.2rem;

    color: #ffffff;

    font-size:
        clamp(2.5rem, 5vw, 4.3rem);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -0.045em;
}


/* Description */

.apcg-modern-page .social-section-content > p {
    max-width: 680px;

    margin:
        0 auto 3.5rem;

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

    font-size: 1.05rem;

    line-height: 1.8;
}


/* Social links layout */

.apcg-modern-page .social-buttons {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 1.25rem;
}


/* Social button */

.apcg-modern-page .social-button {
    display: flex;

    align-items: center;

    min-height: 105px;

    gap: 1rem;

    padding:
        1.3rem 1.4rem;

    color: #ffffff;

    text-align: left;

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

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

    border-radius: 1.25rem;

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.apcg-modern-page .social-button:hover {
    color: #ffffff;

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

    border-color:
        rgba(255, 255, 255, 0.35);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.2);

    transform:
        translateY(-7px);
}


/* Social icon */

.apcg-modern-page .social-button-icon {
    display: grid;

    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    place-items: center;

    color: #ffffff;

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

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

    border-radius: 1rem;

    font-size: 1.65rem;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}


.apcg-modern-page .social-button:hover
.social-button-icon {
    background:
        rgba(255, 255, 255, 0.2);

    transform:
        scale(1.06);
}


/* Social text */

.apcg-modern-page .social-button-text {
    display: flex;

    flex: 1;

    flex-direction: column;

    min-width: 0;
}


.apcg-modern-page .social-button-text small {
    margin-bottom: 0.15rem;

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

    font-size: 0.7rem;

    line-height: 1.3;
}


.apcg-modern-page .social-button-text strong {
    color: #ffffff;

    font-size: 1.05rem;

    font-weight: 700;
}


/* External-link arrow */

.apcg-modern-page .social-arrow {
    color:
        rgba(255, 255, 255, 0.5);

    font-size: 1rem;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.apcg-modern-page .social-button:hover
.social-arrow {
    color: #ffffff;

    transform:
        translate(3px, -3px);
}


/* Individual network hover accents */

.apcg-modern-page .social-facebook:hover {
    background:
        rgba(24, 119, 242, 0.25);
}


.apcg-modern-page .social-linkedin:hover {
    background:
        rgba(10, 102, 194, 0.28);
}


.apcg-modern-page .social-youtube:hover {
    background:
        rgba(255, 0, 0, 0.22);
}


/* ==================================================
   SOCIAL SECTION RESPONSIVE
================================================== */

@media (max-width: 991.98px) {

    .apcg-modern-page .social-section {
        padding: 5rem 0;
    }


    .apcg-modern-page .social-buttons {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .apcg-modern-page .social-youtube {
        grid-column:
            1 / -1;
    }

}


@media (max-width: 575.98px) {

    .apcg-modern-page .social-section {
        padding: 4rem 0;
    }


    .apcg-modern-page
    .social-section-content > p {
        margin-bottom: 2.5rem;

        font-size: 0.95rem;
    }


    .apcg-modern-page .social-buttons {
        grid-template-columns: 1fr;
    }


    .apcg-modern-page .social-youtube {
        grid-column: auto;
    }


    .apcg-modern-page .social-button {
        min-height: 95px;

        padding: 1.1rem;
    }


    .apcg-modern-page .social-button-icon {
        flex-basis: 52px;

        width: 52px;
        height: 52px;

        font-size: 1.45rem;
    }

}
/* ==================================================
   LATEST NEWS RESPONSIVE
================================================== */

@media (max-width: 991.98px) {

    .apcg-modern-page .latest-news-section {
        padding: 3rem 0;
    }

    .apcg-modern-page .news-heading {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media (max-width: 575.98px) {

    .apcg-modern-page .latest-news-section {
        padding: 3rem 0;
    }

    .apcg-modern-page .news-card-image {
        height: 220px;
    }

    .apcg-modern-page .news-card-content {
        padding: 1.35rem;
    }

}

/* ==================================================
   ABOUT APCG
================================================== */

.apcg-modern-page .about-section {
    padding: 7rem 0;
    background-color: var(--apcg-soft);
}


/* Section heading */

.apcg-modern-page .section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;

    margin-bottom: 1rem;

    color: var(--apcg-primary);

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}





.apcg-modern-page .section-title {
    max-width: 720px;

    margin: 0 0 3rem;

    color: var(--apcg-text);

    font-size: clamp(2.3rem, 4vw, 3.7rem);
    font-weight: 800;

    line-height: 1.08;
    letter-spacing: -0.045em;
}


/* About information */

.apcg-modern-page .about-content {
    margin-bottom: 2.5rem;
}


.apcg-modern-page .about-item {
    display: grid;

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

    gap: 1.25rem;

    padding: 1.4rem 0;

    border-top: 1px solid #e5eaf1;
}


.apcg-modern-page .about-item:last-child {
    border-bottom: 1px solid #e5eaf1;
}


.apcg-modern-page .about-number {
    display: flex;

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

    padding-top: 0.15rem;

    color: var(--apcg-primary);

    font-size: 0.8rem;
    font-weight: 800;

    letter-spacing: 0.08em;
}


.apcg-modern-page .about-item p {
    max-width: 750px;

    margin: 0;

    color: var(--apcg-muted);

    font-size: 1rem;

    line-height: 1.85;
}


/* About image */

.apcg-modern-page .about-image {
    position: relative;

    min-height: 680px;

    overflow: hidden;

    border-radius: 1.5rem;

    box-shadow:
        0 30px 80px rgba(7, 26, 58, 0.17);
}


.apcg-modern-page .about-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(3, 15, 35, 0.75) 100%
        );

    pointer-events: none;
}


.apcg-modern-page .about-image img {
    width: 100%;
    height: 100%;

    min-height: 680px;

    object-fit: cover;

    transition:
        transform 0.8s ease;
}


.apcg-modern-page .about-image:hover img {
    transform: scale(1.035);
}


/* Image information */

.apcg-modern-page .about-image-label {
    position: absolute;

    right: 2rem;
    bottom: 2rem;
    left: 2rem;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 1rem;

    padding: 1.2rem;

    color: #ffffff;

    background:
        rgba(7, 26, 58, 0.45);

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

    border-radius: 1rem;

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);
}


.apcg-modern-page .about-image-label i {
    display: grid;

    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    place-items: center;

    color: #ffffff;

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

    border-radius: 50%;

    font-size: 1.35rem;
}


.apcg-modern-page .about-image-label strong {
    display: block;

    margin-bottom: 0.2rem;

    color: #ffffff;

    font-size: 0.95rem;
}


.apcg-modern-page .about-image-label span {
    display: block;

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

    font-size: 0.76rem;

    line-height: 1.5;
}


/* About button */

.apcg-modern-page .modern-button {
    display: inline-flex;

    align-items: center;

    gap: 0.75rem;

    padding: 0.85rem 1.5rem;

    border: 1px solid transparent;
    border-radius: 50rem;

    font-size: 0.9rem;
    font-weight: 700;

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


.apcg-modern-page .modern-button-outline {
    color: var(--apcg-primary);

    border-color:
        rgba(11, 94, 215, 0.35);
}


.apcg-modern-page .modern-button-outline:hover {
    color: #ffffff;

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

    border-color:
        var(--apcg-primary);

    transform:
        translateY(-2px);
}


/* ==================================================
   ABOUT RESPONSIVE
================================================== */

@media (max-width: 991.98px) {

    .apcg-modern-page .about-section {
        padding: 5rem 0;
    }


    .apcg-modern-page .about-image {
        min-height: 500px;

        margin-top: 1rem;
    }


    .apcg-modern-page .about-image img {
        min-height: 500px;
    }

}


@media (max-width: 575.98px) {

    .apcg-modern-page .about-section {
        padding: 4rem 0;
    }


    .apcg-modern-page .section-title {
        margin-bottom: 2rem;

        font-size: 2.25rem;
    }


    .apcg-modern-page .section-title br {
        display: none;
    }


    .apcg-modern-page .about-item {
        grid-template-columns: 36px minmax(0, 1fr);

        gap: 0.8rem;

        padding: 1.2rem 0;
    }


    .apcg-modern-page .about-item p {
        font-size: 0.94rem;

        line-height: 1.75;
    }


    .apcg-modern-page .about-image {
        min-height: 420px;

        border-radius: 1.1rem;
    }


    .apcg-modern-page .about-image img {
        min-height: 420px;
    }


    .apcg-modern-page .about-image-label {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;

        padding: 1rem;
    }

}

/* Responsive */


@media (max-width: 991.98px) {
  .hero {
    min-height: 720px;
    background-position: 65% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(2, 10, 28, 0.94), rgba(4, 22, 54, 0.63));
  }

 

  .image-panel img {
    min-height: 340px;
  }

  .stat-item:nth-child(2) {
    border-right: 0;
  }

  .stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid #edf1f6;
  }
}

@media (max-width: 767.98px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .apcg-modern-page .brand-logo {
    width: 125px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-container {
    padding-top: 3rem;
    padding-bottom: 5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .apcg-button {
    width: 100%;
  }


  .feature-card {
    padding: 1.5rem;
  }

  .stat-item {
    padding: 1.8rem 0.75rem;
  }

  .stat-item strong {
    font-size: 1.7rem;
  }
}



/* ==================================================
   PEOPLE PAGE
================================================== */

.apcg-modern-page.people-page {
    background-color: #ffffff;
}


/* ==================================================
   PEOPLE HERO
================================================== */

.apcg-modern-page .people-hero {
    position: relative;
    display: flex;
    min-height: 620px;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background:
        url("../images/teamwork-3213924_1280.jpg")
        center 38% / cover no-repeat;
}

.apcg-modern-page .people-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 14, 35, 0.96) 0%,
            rgba(5, 29, 66, 0.82) 48%,
            rgba(5, 29, 66, 0.30) 100%
        );
}

.apcg-modern-page .people-hero-container {
    position: relative;
    z-index: 2;
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.apcg-modern-page .people-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.8rem;
}

.apcg-modern-page .people-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.75);
}

.apcg-modern-page .people-breadcrumb a:hover {
    color: #ffffff;
}

.apcg-modern-page .people-breadcrumb > i {
    font-size: 0.65rem;
}

.apcg-modern-page .people-hero-content {
    max-width: 760px;
}

.apcg-modern-page .people-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.apcg-modern-page .people-hero-label::before {
    content: "";
    width: 34px;
    height: 2px;
    background-color: var(--apcg-primary);
}

.apcg-modern-page .people-hero h1 {
     max-width: 900px;

    margin: 0 0 1.5rem;

    color: #ffffff;

    font-size:
        clamp(2.3rem, 4vw, 3.7rem);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -0.055em;
}

.apcg-modern-page .people-hero-content > p {
    max-width: 670px;
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.06rem;
    line-height: 1.85;
}

.apcg-modern-page .people-hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.45rem;
    color: #ffffff;
    background-color: var(--apcg-primary);
    border-radius: 50rem;
    font-size: 0.9rem;
    font-weight: 700;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.apcg-modern-page .people-hero-button:hover {
    color: #ffffff;
    background-color: var(--apcg-primary-dark);
    transform: translateY(-2px);
}


/* ==================================================
   PEOPLE SUMMARY
================================================== */

.apcg-modern-page .people-summary-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.apcg-modern-page .people-section-heading {
    max-width: 760px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.apcg-modern-page .people-section-heading h2 {
    margin: 0 0 1rem;
    color: var(--apcg-text);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.apcg-modern-page .people-section-heading p {
    max-width: 620px;
    margin: auto;
    color: var(--apcg-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.apcg-modern-page .people-stat-card {
    display: flex;
    height: 100%;
    min-height: 180px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    text-align: center;
    background-color: var(--apcg-soft);
    border: 1px solid #e7edf5;
    border-radius: 1.2rem;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.apcg-modern-page .people-stat-card:hover {
    border-color: rgba(11, 94, 215, 0.24);
    box-shadow: 0 18px 45px rgba(19, 33, 60, 0.09);
    transform: translateY(-6px);
}

.apcg-modern-page .people-stat-number {
    display: grid;
    width: 72px;
    height: 72px;
    margin-bottom: 1rem;
    place-items: center;
    color: var(--apcg-primary);
    background-color: #ffffff;
    border: 1px solid rgba(11, 94, 215, 0.13);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(19, 33, 60, 0.07);
    font-size: 1.65rem;
    font-weight: 800;
}

.apcg-modern-page .people-stat-title {
    max-width: 150px;
    color: var(--apcg-text);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.45;
}


/* ==================================================
   PEOPLE DIRECTORY
================================================== */

.apcg-modern-page .people-directory-section {
    padding: 3rem 0;
    background-color: var(--apcg-soft);
   
    
}

.apcg-modern-page .people-directory-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.apcg-modern-page .people-directory-heading h2 {
    margin: 0 0 0.75rem;
    color: var(--apcg-text);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.apcg-modern-page .people-directory-heading p {
    margin: 0;
    color: var(--apcg-muted);
}

.apcg-modern-page .people-result-count {
    flex: 0 0 auto;
    padding: 0.65rem 1rem;
    color: var(--apcg-primary-dark);
    background-color: rgba(11, 94, 215, 0.08);
    border-radius: 50rem;
    font-size: 0.82rem;
    font-weight: 700;
}


/* Filters */

.apcg-modern-page .people-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 3rem;
}

.apcg-modern-page .people-filter {
    width: auto;
    margin: 0;
    padding: 0.7rem 1rem;
    color: var(--apcg-muted);
    background-color: #ffffff;
    border: 1px solid #dfe6f0;
    border-radius: 50rem;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.apcg-modern-page .people-filter:hover {
    color: var(--apcg-primary);
    border-color: rgba(11, 94, 215, 0.35);
    transform: translateY(-2px);
}

.apcg-modern-page .people-filter.active {
    color: #ffffff;
    background-color: var(--apcg-primary);
    border-color: var(--apcg-primary);
}


/* ==================================================
   PERSON CARD
================================================== */

.apcg-modern-page .person-card {
    height: 100%;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #e5eaf1;
    border-radius: 1.25rem;
    box-shadow: 0 10px 35px rgba(19, 33, 60, 0.055);
    animation:
        personCardEnter 0.55s ease both;
    animation-delay:
        var(--person-delay);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.apcg-modern-page .person-card:hover {
    border-color: rgba(11, 94, 215, 0.24);
    box-shadow: 0 24px 60px rgba(19, 33, 60, 0.13);
    transform: translateY(-8px);
}

@keyframes personCardEnter {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Person image */

.apcg-modern-page .person-card-image {
    position: relative;
    display: block;
    height: 280px;
    overflow: hidden;
    background-color: #dfe7f1;
}

.apcg-modern-page .person-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s ease;
}

.apcg-modern-page .person-card:hover .person-card-image img {
    transform: scale(1.045);
}

.apcg-modern-page .person-image-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--apcg-primary);
    background:
        linear-gradient(
            135deg,
            rgba(11, 94, 215, 0.14),
            rgba(7, 26, 58, 0.07)
        );
    font-size: 4rem;
}

.apcg-modern-page .person-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(3, 14, 35, 0.78) 100%
        );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.apcg-modern-page .person-card:hover .person-image-overlay {
    opacity: 1;
}

.apcg-modern-page .person-profile-action {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    left: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.apcg-modern-page .person-card:hover .person-profile-action {
    opacity: 1;
    transform: translateY(0);
}


/* Person information */

.apcg-modern-page .person-card-content {
    padding: 1.45rem;
}

.apcg-modern-page .person-role {
    display: block;
    min-height: 38px;
    margin-bottom: 0.55rem;
    color: var(--apcg-primary);
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.apcg-modern-page .person-name {
    margin: 0 0 1.35rem;
    font-size: 1.2rem;
    font-weight: 750;
    line-height: 1.35;
}

.apcg-modern-page .person-name a {
    color: var(--apcg-text);
}

.apcg-modern-page .person-name a:hover {
    color: var(--apcg-primary);
}

.apcg-modern-page .person-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #edf1f6;
}

.apcg-modern-page .person-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--apcg-primary);
    font-size: 0.8rem;
    font-weight: 700;
}

.apcg-modern-page .person-profile-link i {
    transition: transform 0.25s ease;
}

.apcg-modern-page .person-profile-link:hover i {
    transform: translateX(3px);
}

.apcg-modern-page .person-contact-actions {
    display: flex;
    gap: 0.45rem;
}

.apcg-modern-page .person-contact-link {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--apcg-muted);
    background-color: var(--apcg-soft);
    border-radius: 50%;
    font-size: 0.85rem;
}

.apcg-modern-page .person-contact-link:hover {
    color: #ffffff;
    background-color: var(--apcg-primary);
}


/* Loading and error */

.apcg-modern-page .people-status {
    display: flex;
    min-height: 180px;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--apcg-muted);
    text-align: center;
}

.apcg-modern-page .people-error {
    min-height: auto;
    justify-content: flex-start;
    margin-bottom: 2rem;
    padding: 1.25rem;
    color: #842029;
    text-align: left;
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
    border-radius: 1rem;
}

.apcg-modern-page .people-error i {
    font-size: 1.5rem;
}

.apcg-modern-page .people-error strong,
.apcg-modern-page .people-error span {
    display: block;
}

.apcg-modern-page .people-error span {
    margin-top: 0.15rem;
    font-size: 0.85rem;
}


/* ==================================================
   PEOPLE RESPONSIVE
================================================== */

@media (max-width: 991.98px) {

    .apcg-modern-page .people-hero {
        min-height: 560px;
        background-position: 60% center;
    }

    .apcg-modern-page .people-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 14, 35, 0.96),
                rgba(5, 29, 66, 0.72)
            );
    }

    .apcg-modern-page .people-summary-section,
    .apcg-modern-page .people-directory-section {
        padding: 5rem 0;
    }

    .apcg-modern-page .people-directory-heading {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 575.98px) {

    .apcg-modern-page .people-hero {
        min-height: 530px;
    }

    .apcg-modern-page .people-hero-container {
        padding-top: 7rem;
        padding-bottom: 4rem;
    }

    .apcg-modern-page .people-breadcrumb {
        margin-bottom: 2rem;
    }

    .apcg-modern-page .people-hero h1 {
        font-size: 3rem;
    }

    .apcg-modern-page .people-hero-content > p {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .apcg-modern-page .people-summary-section,
    .apcg-modern-page .people-directory-section {
        padding: 4rem 0;
    }

    .apcg-modern-page .people-stat-card {
        min-height: 165px;
    }

    .apcg-modern-page .people-filters {
        flex-wrap: nowrap;
        margin-right: -1rem;
        margin-left: -1rem;
        padding-right: 1rem;
        padding-bottom: 0.5rem;
        padding-left: 1rem;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .apcg-modern-page .people-filter {
        flex: 0 0 auto;
    }

    .apcg-modern-page .person-card-image {
        height: 280px;
    }

}


@media (prefers-reduced-motion: reduce) {

    .apcg-modern-page .person-card {
        animation: none;
    }

    .apcg-modern-page .person-card,
    .apcg-modern-page .person-card-image img,
    .apcg-modern-page .person-profile-action {
        transition: none;
    }

}

/* ==================================================
   RESEARCH ACTIVITY PAGE
================================================== */

.apcg-modern-page.research-page {
    background-color: #ffffff;
}


/* ==================================================
   RESEARCH HERO
================================================== */

.apcg-modern-page .research-hero {
    position: relative;

    display: flex;

    min-height: 650px;

    align-items: center;

    overflow: hidden;

    color: #ffffff;

    background:
        url("../images/people-2557399_1280.jpg")
        center 45% / cover no-repeat;
}


.apcg-modern-page .research-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 14, 35, 0.97) 0%,
            rgba(4, 28, 65, 0.85) 48%,
            rgba(4, 28, 65, 0.28) 100%
        );
}


.apcg-modern-page .research-hero-container {
    position: relative;

    z-index: 2;

    padding-top: 8rem;

    padding-bottom: 6rem;
}


/* Breadcrumb */

.apcg-modern-page .research-breadcrumb {
    display: flex;

    align-items: center;

    gap: 0.6rem;

    margin-bottom: 3rem;

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

    font-size: 0.8rem;
}


.apcg-modern-page .research-breadcrumb a {
    display: inline-flex;

    align-items: center;

    gap: 0.45rem;

    color:
        rgba(255, 255, 255, 0.75);
}


.apcg-modern-page .research-breadcrumb a:hover {
    color: #ffffff;
}


.apcg-modern-page
.research-breadcrumb > i {
    font-size: 0.65rem;
}


/* Hero content */

.apcg-modern-page
.research-hero-content {
    max-width: 850px;
}


.apcg-modern-page
.research-hero-label {
    display: inline-flex;

    align-items: center;

    gap: 0.8rem;

    margin-bottom: 1.2rem;

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

    font-size: 0.78rem;

    font-weight: 800;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


.apcg-modern-page
.research-hero-label::before {
    content: "";

    width: 34px;

    height: 2px;

    background-color:
        var(--apcg-primary);
}


.apcg-modern-page
.research-hero h1 {
    max-width: 900px;

    margin: 0 0 1.5rem;

    color: #ffffff;

    font-size:
        clamp(2.3rem, 4vw, 3.7rem);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -0.055em;
}


.apcg-modern-page
.research-hero-content > p {
    max-width: 720px;

    margin: 0 0 2rem;

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

    font-size: 1.05rem;

    line-height: 1.85;
}


/* Hero button */

.apcg-modern-page
.research-hero-button {
    display: inline-flex;

    align-items: center;

    gap: 0.75rem;

    padding:
        0.9rem 1.45rem;

    color: #ffffff;

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

    border-radius: 50rem;

    font-size: 0.9rem;

    font-weight: 700;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}


.apcg-modern-page
.research-hero-button:hover {
    color: #ffffff;

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

    transform:
        translateY(-2px);
}


/* ==================================================
   RESEARCH INTRODUCTION
================================================== */

.apcg-modern-page
.research-introduction {
    padding: 7rem 0;

    background-color: #ffffff;
}


.apcg-modern-page
.research-introduction h2 {
    max-width: 750px;

    margin: 0 0 2rem;

    color:
        var(--apcg-text);

    font-size:
        clamp(2.3rem, 4vw, 3.7rem);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -0.045em;
}


.apcg-modern-page
.research-introduction p {
    max-width: 760px;

    color:
        var(--apcg-muted);

    font-size: 1rem;

    line-height: 1.85;
}


.apcg-modern-page
.research-introduction
.research-introduction-lead {
    color:
        var(--apcg-text);

    font-size: 1.15rem;

    font-weight: 500;
}


/* Research methods */

.apcg-modern-page
.research-methods {
    padding: 0.6rem;

    background-color:
        var(--apcg-soft);

    border:
        1px solid #e7edf5;

    border-radius: 1.4rem;
}


.apcg-modern-page
.research-method {
    display: flex;

    align-items: flex-start;

    gap: 1rem;

    padding: 1.4rem;

    background-color: transparent;

    border-radius: 1rem;

    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}


.apcg-modern-page
.research-method:hover {
    background-color: #ffffff;

    box-shadow:
        0 15px 35px
        rgba(19, 33, 60, 0.08);

    transform:
        translateX(5px);
}


.apcg-modern-page
.research-method-icon {
    display: grid;

    flex: 0 0 52px;

    width: 52px;

    height: 52px;

    place-items: center;

    color:
        var(--apcg-primary);

    background-color:
        rgba(11, 94, 215, 0.1);

    border-radius: 1rem;

    font-size: 1.35rem;
}


.apcg-modern-page
.research-method h3 {
    margin: 0 0 0.35rem;

    color:
        var(--apcg-text);

    font-size: 1rem;

    font-weight: 750;
}


.apcg-modern-page
.research-method p {
    margin: 0;

    color:
        var(--apcg-muted);

    font-size: 0.86rem;

    line-height: 1.65;
}


/* ==================================================
   RESEARCH AREAS
================================================== */

.apcg-modern-page
.research-areas-section {
    padding: 7rem 0;

    background-color:
        var(--apcg-soft);
}


.apcg-modern-page
.research-section-heading {
    max-width: 760px;

    margin:
        0 auto 3.5rem;

    text-align: center;
}


.apcg-modern-page
.research-section-heading h2 {
    margin: 0 0 1rem;

    color:
        var(--apcg-text);

    font-size:
        clamp(2.3rem, 4vw, 3.7rem);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -0.045em;
}


.apcg-modern-page
.research-section-heading p {
    max-width: 650px;

    margin: auto;

    color:
        var(--apcg-muted);

    line-height: 1.8;
}


/* ==================================================
   RESEARCH CARD
================================================== */

.apcg-modern-page
.research-card {
    height: 100%;

    overflow: hidden;

    background-color: #ffffff;

    border:
        1px solid #e4eaf2;

    border-radius: 1.35rem;

    box-shadow:
        0 10px 35px
        rgba(19, 33, 60, 0.055);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.apcg-modern-page
.research-card:hover {
    border-color:
        rgba(11, 94, 215, 0.25);

    box-shadow:
        0 26px 65px
        rgba(19, 33, 60, 0.14);

    transform:
        translateY(-9px);
}


/* Image */

.apcg-modern-page
.research-card-image {
    position: relative;

    display: block;

    height: 285px;

    overflow: hidden;

    background-color: #dce5ef;
}


.apcg-modern-page
.research-card-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.75s ease;
}


.apcg-modern-page
.research-card:hover
.research-card-image img {
    transform:
        scale(1.055);
}


.apcg-modern-page
.research-card-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(3, 14, 35, 0.02),
            rgba(3, 14, 35, 0.38)
        );
}


.apcg-modern-page
.research-card-number {
    position: absolute;

    top: 1.2rem;

    left: 1.2rem;

    z-index: 2;

    display: grid;

    width: 46px;

    height: 46px;

    place-items: center;

    color: #ffffff;

    background:
        rgba(3, 14, 35, 0.6);

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

    border-radius: 50%;

    backdrop-filter:
        blur(12px);

    font-size: 0.72rem;

    font-weight: 800;
}


/* Card content */

.apcg-modern-page
.research-card-content {
    display: flex;

    min-height: 285px;

    flex-direction: column;

    padding: 1.7rem;
}


.apcg-modern-page
.research-card-category {
    display: block;

    margin-bottom: 0.65rem;

    color:
        var(--apcg-primary);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.apcg-modern-page
.research-card h3 {
    margin: 0 0 0.9rem;

    font-size: 1.45rem;

    font-weight: 750;

    line-height: 1.3;
}


.apcg-modern-page
.research-card h3 a {
    color:
        var(--apcg-text);
}


.apcg-modern-page
.research-card h3 a:hover {
    color:
        var(--apcg-primary);
}


.apcg-modern-page
.research-card p {
    flex-grow: 1;

    margin: 0 0 1.4rem;

    color:
        var(--apcg-muted);

    font-size: 0.92rem;

    line-height: 1.75;
}


.apcg-modern-page
.research-card-link {
    display: inline-flex;

    align-items: center;

    gap: 0.55rem;

    color:
        var(--apcg-primary);

    font-size: 0.86rem;

    font-weight: 700;
}


.apcg-modern-page
.research-card-link i {
    transition:
        transform 0.25s ease;
}


.apcg-modern-page
.research-card:hover
.research-card-link i {
    transform:
        translateX(4px);
}


/* ==================================================
   RESEARCH CONNECTION
================================================== */

.apcg-modern-page
.research-connection-section {
    padding: 7rem 0;

    background-color: var(--apcg-soft);
}


.apcg-modern-page
.research-connection {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 3rem;

    padding:
        4rem;

    overflow: hidden;

    color: #ffffff;

    background:
        linear-gradient(
            120deg,
            #061735,
            #0a3973
        );

    border-radius: 1.8rem;

    box-shadow:
        0 30px 80px
        rgba(7, 26, 58, 0.2);
}


.apcg-modern-page
.research-connection-content {
    max-width: 700px;
}


.apcg-modern-page
.research-connection-content > span {
    display: block;

    margin-bottom: 1rem;

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

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}


.apcg-modern-page
.research-connection h2 {
    margin: 0 0 1.2rem;

    color: #ffffff;

    font-size:
        clamp(2rem, 4vw, 3.5rem);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -0.045em;
}


.apcg-modern-page
.research-connection p {
    max-width: 650px;

    margin: 0;

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

    line-height: 1.8;
}


.apcg-modern-page
.research-connection-links {
    display: flex;

    flex: 0 0 auto;

    flex-direction: column;

    align-items: stretch;

    gap: 0.8rem;
}


.apcg-modern-page
.research-connection-primary,
.apcg-modern-page
.research-connection-secondary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 0.7rem;

    min-width: 210px;

    padding:
        0.9rem 1.3rem;

    border-radius: 50rem;

    font-size: 0.85rem;

    font-weight: 700;
}


.apcg-modern-page
.research-connection-primary {
    color:
        var(--apcg-navy);

    background-color:
        #ffffff;
}


.apcg-modern-page
.research-connection-primary:hover {
    color:
        var(--apcg-primary);

    transform:
        translateY(-2px);
}


.apcg-modern-page
.research-connection-secondary {
    color: #ffffff;

    border:
        1px solid
        rgba(255, 255, 255, 0.25);
}


.apcg-modern-page
.research-connection-secondary:hover {
    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.1);
}


/* ==================================================
   RESEARCH RESPONSIVE
================================================== */

@media (max-width: 991.98px) {

    .apcg-modern-page
    .research-hero {
        min-height: 590px;

        background-position:
            60% center;
    }


    .apcg-modern-page
    .research-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 14, 35, 0.97),
                rgba(4, 28, 65, 0.72)
            );
    }


    .apcg-modern-page
    .research-introduction,

    .apcg-modern-page
    .research-areas-section,

    .apcg-modern-page
    .research-connection-section {
        padding: 5rem 0;
    }


    .apcg-modern-page
    .research-connection {
        align-items:
            flex-start;

        flex-direction:
            column;

        padding: 3rem;
    }


    .apcg-modern-page
    .research-connection-links {
        width: 100%;

        flex-direction: row;
    }

}


@media (max-width: 575.98px) {

    .apcg-modern-page
    .research-hero {
        min-height: 570px;
    }


    .apcg-modern-page
    .research-hero-container {
        padding-top: 7rem;

        padding-bottom: 4rem;
    }


    .apcg-modern-page
    .research-breadcrumb {
        margin-bottom: 2rem;
    }


    .apcg-modern-page
    .research-hero h1 {
        font-size: 2.9rem;
    }


    .apcg-modern-page
    .research-hero h1 br {
        display: none;
    }


    .apcg-modern-page
    .research-hero-content > p {
        font-size: 0.94rem;

        line-height: 1.75;
    }


    .apcg-modern-page
    .research-introduction,

    .apcg-modern-page
    .research-areas-section,

    .apcg-modern-page
    .research-connection-section {
        padding: 4rem 0;
    }


    .apcg-modern-page
    .research-card-image {
        height: 245px;
    }


    .apcg-modern-page
    .research-card-content {
        min-height: auto;

        padding: 1.4rem;
    }


    .apcg-modern-page
    .research-connection {
        padding:
            2.2rem 1.5rem;

        border-radius: 1.3rem;
    }


    .apcg-modern-page
    .research-connection-links {
        flex-direction: column;
    }


    .apcg-modern-page
    .research-connection-primary,

    .apcg-modern-page
    .research-connection-secondary {
        width: 100%;
    }

}

/* ==================================================
   PROJECTS PAGE
================================================== */

.apcg-modern-page.projects-page {
    background-color: #ffffff;
}


/* ==================================================
   PROJECTS HERO
================================================== */

.apcg-modern-page .projects-hero {
    position: relative;
    display: flex;
    min-height: 640px;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background:
        url("../images/project.jpg")
        center 48% / cover no-repeat;
}

.apcg-modern-page .projects-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 14, 35, 0.97) 0%,
            rgba(5, 30, 68, 0.84) 48%,
            rgba(5, 30, 68, 0.28) 100%
        );
}

.apcg-modern-page .projects-hero-container {
    position: relative;
    z-index: 2;
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.apcg-modern-page .projects-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.8rem;
}

.apcg-modern-page .projects-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.75);
}

.apcg-modern-page .projects-breadcrumb a:hover {
    color: #ffffff;
}

.apcg-modern-page .projects-breadcrumb > i {
    font-size: 0.65rem;
}

.apcg-modern-page .projects-hero-content {
    max-width: 850px;
}

.apcg-modern-page .projects-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.apcg-modern-page .projects-hero-label::before {
    content: "";
    width: 34px;
    height: 2px;
    background-color: var(--apcg-primary);
}

.apcg-modern-page .projects-hero h1 {
    max-width: 900px;

    margin: 0 0 1.5rem;

    color: #ffffff;

    font-size:
        clamp(2.3rem, 4vw, 3.7rem);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -0.055em;
}

.apcg-modern-page .projects-hero-content > p {
    max-width: 720px;
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.85;
}

.apcg-modern-page .projects-hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.45rem;
    color: #ffffff;
    background-color: var(--apcg-primary);
    border-radius: 50rem;
    font-size: 0.9rem;
    font-weight: 700;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.apcg-modern-page .projects-hero-button:hover {
    color: #ffffff;
    background-color: var(--apcg-primary-dark);
    transform: translateY(-2px);
}


/* ==================================================
   PROJECTS INTRODUCTION
================================================== */

.apcg-modern-page .projects-introduction {
    padding: 7rem 0;
    background-color: #ffffff;
}

.apcg-modern-page .projects-introduction h2 {
    max-width: 760px;
    margin: 0 0 2rem;
    color: var(--apcg-text);
    font-size: clamp(2.3rem, 4vw, 3.7rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.apcg-modern-page .projects-introduction p {
    max-width: 760px;
    color: var(--apcg-muted);
    font-size: 1rem;
    line-height: 1.85;
}

.apcg-modern-page .projects-introduction-lead {
    color: var(--apcg-text) !important;
    font-size: 1.15rem !important;
    font-weight: 500;
}

.apcg-modern-page .projects-highlights {
    padding: 0.65rem;
    background-color: var(--apcg-soft);
    border: 1px solid #e6edf5;
    border-radius: 1.4rem;
}

.apcg-modern-page .projects-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: 1rem;
    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.apcg-modern-page .projects-highlight:hover {
    background-color: #ffffff;
    box-shadow: 0 15px 35px rgba(19, 33, 60, 0.08);
    transform: translateX(5px);
}

.apcg-modern-page .projects-highlight > span {
    display: grid;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--apcg-primary);
    background-color: rgba(11, 94, 215, 0.1);
    border-radius: 1rem;
    font-size: 1.35rem;
}

.apcg-modern-page .projects-highlight strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--apcg-text);
    font-size: 0.98rem;
}

.apcg-modern-page .projects-highlight p {
    margin: 0;
    color: var(--apcg-muted);
    font-size: 0.86rem;
    line-height: 1.65;
}


/* ==================================================
   PROJECTS DIRECTORY
================================================== */

.apcg-modern-page .projects-directory-section {
    padding: 7rem 0;
    background-color: var(--apcg-soft);
}

.apcg-modern-page .projects-directory-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.apcg-modern-page .projects-directory-heading h2 {
    margin: 0 0 0.8rem;
    color: var(--apcg-text);
    font-size: clamp(2.3rem, 4vw, 3.7rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.apcg-modern-page .projects-directory-heading p {
    max-width: 670px;
    margin: 0;
    color: var(--apcg-muted);
    line-height: 1.75;
}

.apcg-modern-page .projects-result-count {
    flex: 0 0 auto;
    padding: 0.65rem 1rem;
    color: var(--apcg-primary-dark);
    background-color: rgba(11, 94, 215, 0.08);
    border-radius: 50rem;
    font-size: 0.82rem;
    font-weight: 700;
}


/* Filters */

.apcg-modern-page .projects-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 3rem;
}

.apcg-modern-page .projects-filter {
    width: auto;
    margin: 0;
    padding: 0.72rem 1.05rem;
    color: var(--apcg-muted);
    background-color: #ffffff;
    border: 1px solid #dfe6f0;
    border-radius: 50rem;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.apcg-modern-page .projects-filter:hover {
    color: var(--apcg-primary);
    border-color: rgba(11, 94, 215, 0.35);
    transform: translateY(-2px);
}

.apcg-modern-page .projects-filter.active {
    color: #ffffff;
    background-color: var(--apcg-primary);
    border-color: var(--apcg-primary);
}


/* Project grid */

.apcg-modern-page .projects-grid {
    display: grid;
    gap: 1.5rem;
}


/* ==================================================
   PROJECT CARD
================================================== */

.apcg-modern-page .project-card {
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #e4eaf2;
    border-radius: 1.3rem;
    box-shadow: 0 10px 35px rgba(19, 33, 60, 0.055);
    animation: projectCardEnter 0.55s ease both;
    animation-delay: var(--project-delay);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.apcg-modern-page .project-card:hover {
    border-color: rgba(11, 94, 215, 0.24);
    box-shadow: 0 24px 60px rgba(19, 33, 60, 0.12);
    transform: translateY(-5px);
}

@keyframes projectCardEnter {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.apcg-modern-page .project-card-main {
    padding: 2rem;
}

.apcg-modern-page .project-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.apcg-modern-page .project-status,
.apcg-modern-page .project-date {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.74rem;
    font-weight: 700;
}

.apcg-modern-page .project-status {
    padding: 0.42rem 0.7rem;
    border-radius: 50rem;
}

.apcg-modern-page .project-status-active {
    color: #176b3a;
    background-color: #e6f7ed;
}

.apcg-modern-page .project-status-completed {
    color: #59657a;
    background-color: #edf1f6;
}

.apcg-modern-page .project-date {
    color: var(--apcg-muted);
}

.apcg-modern-page .project-card-heading {
    display: grid;
    grid-template-columns: 135px minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.apcg-modern-page .project-number {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--apcg-primary);
    background-color: rgba(11, 94, 215, 0.09);
    border-radius: 1rem;
    font-size: 0.76rem;
    font-weight: 800;
}

.apcg-modern-page .project-card h3 {
    margin: 0;
    color: var(--apcg-text);
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    font-weight: 750;
    line-height: 1.35;
}

.apcg-modern-page .project-card-summary {
    max-width: 950px;
    margin: 0 0 1.5rem 150px;
    color: var(--apcg-muted);
    font-size: 0.92rem;
    line-height: 1.75;
}

.apcg-modern-page .project-card-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-left: 150px;
}

.apcg-modern-page .project-details-button {
    display: inline-flex;
    width: auto;
    align-items: center;
    gap: 0.65rem;
    margin: 0;
    padding: 0.75rem 1rem;
    color: #ffffff;
    background-color: var(--apcg-primary);
    border: 1px solid var(--apcg-primary);
    border-radius: 50rem;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 700;
}

.apcg-modern-page .project-details-button:hover {
    background-color: var(--apcg-primary-dark);
    border-color: var(--apcg-primary-dark);
}

.apcg-modern-page .project-details-button i {
    transition: transform 0.25s ease;
}

.apcg-modern-page .project-details-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.apcg-modern-page .project-details-close {
    display: none;
}

.apcg-modern-page
.project-details-button:not(.collapsed)
.project-details-open {
    display: none;
}

.apcg-modern-page
.project-details-button:not(.collapsed)
.project-details-close {
    display: inline;
}

.apcg-modern-page .project-website-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--apcg-primary);
    font-size: 0.82rem;
    font-weight: 700;
}

.apcg-modern-page .project-website-link i {
    transition: transform 0.25s ease;
}

.apcg-modern-page .project-website-link:hover i {
    transform: translate(3px, -3px);
}


/* Expanded details */

.apcg-modern-page .project-details-collapse {
    border-top: 1px solid #e9eef5;
}

.apcg-modern-page .project-details-content {
    padding: 2rem;
    background-color: #fbfcfe;
}

.apcg-modern-page .project-description {
    margin-bottom: 2rem;
}

.apcg-modern-page .project-description strong,
.apcg-modern-page .project-detail-item strong {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--apcg-text);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.apcg-modern-page .project-description p,
.apcg-modern-page .project-detail-item p {
    margin: 0;
    color: var(--apcg-muted);
    line-height: 1.8;
}

.apcg-modern-page .project-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.apcg-modern-page .project-detail-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background-color: #ffffff;
    border: 1px solid #e6ecf3;
    border-radius: 1rem;
}

.apcg-modern-page .project-detail-icon {
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--apcg-primary);
    background-color: rgba(11, 94, 215, 0.09);
    border-radius: 0.85rem;
    font-size: 1.05rem;
}


/* Loading and error */

.apcg-modern-page .projects-status {
    display: flex;
    min-height: 180px;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--apcg-muted);
    text-align: center;
}

.apcg-modern-page .projects-error {
    min-height: auto;
    justify-content: flex-start;
    margin-bottom: 2rem;
    padding: 1.25rem;
    color: #842029;
    text-align: left;
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
    border-radius: 1rem;
}

.apcg-modern-page .projects-error i {
    font-size: 1.5rem;
}

.apcg-modern-page .projects-error strong,
.apcg-modern-page .projects-error span {
    display: block;
}

.apcg-modern-page .projects-error span {
    margin-top: 0.15rem;
    font-size: 0.85rem;
}


/* ==================================================
   PROJECTS CTA
================================================== */

.apcg-modern-page .projects-cta-section {
    padding: 7rem 0;
    background-color: #ffffff;
}

.apcg-modern-page .projects-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 4rem;
    color: #ffffff;
    background:
        linear-gradient(
            120deg,
            #061735,
            #0a3973
        );
    border-radius: 1.8rem;
    box-shadow: 0 30px 80px rgba(7, 26, 58, 0.2);
}

.apcg-modern-page .projects-cta > div:first-child {
    max-width: 700px;
}

.apcg-modern-page .projects-cta > div:first-child > span {
    display: block;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.apcg-modern-page .projects-cta h2 {
    margin: 0 0 1.2rem;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.apcg-modern-page .projects-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.67);
    line-height: 1.8;
}

.apcg-modern-page .projects-cta-links {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 0.8rem;
}

.apcg-modern-page .projects-cta-primary,
.apcg-modern-page .projects-cta-secondary {
    display: inline-flex;
    min-width: 205px;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.9rem 1.3rem;
    border-radius: 50rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.apcg-modern-page .projects-cta-primary {
    color: var(--apcg-navy);
    background-color: #ffffff;
}

.apcg-modern-page .projects-cta-primary:hover {
    color: var(--apcg-primary);
    transform: translateY(-2px);
}

.apcg-modern-page .projects-cta-secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.apcg-modern-page .projects-cta-secondary:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}


/* ==================================================
   PROJECTS RESPONSIVE
================================================== */

@media (max-width: 991.98px) {

    .apcg-modern-page .projects-hero {
        min-height: 590px;
        background-position: 60% center;
    }

    .apcg-modern-page .projects-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 14, 35, 0.97),
                rgba(5, 30, 68, 0.72)
            );
    }

    .apcg-modern-page .projects-introduction,
    .apcg-modern-page .projects-directory-section,
    .apcg-modern-page .projects-cta-section {
        padding: 5rem 0;
    }

    .apcg-modern-page .projects-directory-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .apcg-modern-page .projects-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 3rem;
    }

    .apcg-modern-page .projects-cta-links {
        width: 100%;
        flex-direction: row;
    }

}


@media (max-width: 767.98px) {

    .apcg-modern-page .project-card-main {
        padding: 1.5rem;
    }

    .apcg-modern-page .project-card-summary,
    .apcg-modern-page .project-card-actions {
        margin-left: 0;
    }

    .apcg-modern-page .project-details-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 575.98px) {

    .apcg-modern-page .projects-hero {
        min-height: 560px;
    }

    .apcg-modern-page .projects-hero-container {
        padding-top: 7rem;
        padding-bottom: 4rem;
    }

    .apcg-modern-page .projects-breadcrumb {
        margin-bottom: 2rem;
    }

    .apcg-modern-page .projects-hero h1 {
        font-size: 2.9rem;
    }

    .apcg-modern-page .projects-hero-content > p {
        font-size: 0.94rem;
        line-height: 1.75;
    }

    .apcg-modern-page .projects-introduction,
    .apcg-modern-page .projects-directory-section,
    .apcg-modern-page .projects-cta-section {
        padding: 4rem 0;
    }

    .apcg-modern-page .projects-filters {
        flex-wrap: nowrap;
        margin-right: -1rem;
        margin-left: -1rem;
        padding-right: 1rem;
        padding-bottom: 0.5rem;
        padding-left: 1rem;
        overflow-x: auto;
    }

    .apcg-modern-page .projects-filter {
        flex: 0 0 auto;
    }

    .apcg-modern-page .project-card-heading {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .apcg-modern-page .project-number {
        width: 44px;
        height: 44px;
    }

    .apcg-modern-page .project-card-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .apcg-modern-page .project-details-button,
    .apcg-modern-page .project-website-link {
        justify-content: center;
    }

    .apcg-modern-page .project-details-content {
        padding: 1.4rem;
    }

    .apcg-modern-page .projects-cta {
        padding: 2.2rem 1.5rem;
        border-radius: 1.3rem;
    }

    .apcg-modern-page .projects-cta-links {
        flex-direction: column;
    }

    .apcg-modern-page .projects-cta-primary,
    .apcg-modern-page .projects-cta-secondary {
        width: 100%;
    }

}


@media (prefers-reduced-motion: reduce) {

    .apcg-modern-page .project-card {
        animation: none;
    }

    .apcg-modern-page .project-card,
    .apcg-modern-page .project-details-button i {
        transition: none;
    }

}

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

.apcg-modern-page.publications-page {
    background-color: #ffffff;
}


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

.apcg-modern-page .publications-hero {
    position: relative;
    display: flex;
    min-height: 640px;
    align-items: center;
    overflow: hidden;
    color: #ffffff;

    background:
        url("../images/book.jpg")
        center 48% / cover no-repeat;
}


.apcg-modern-page .publications-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 14, 35, 0.97) 0%,
            rgba(5, 30, 68, 0.86) 50%,
            rgba(5, 30, 68, 0.3) 100%
        );
}


.apcg-modern-page .publications-hero-container {
    position: relative;
    z-index: 2;

    padding-top: 8rem;
    padding-bottom: 6rem;
}


/* Breadcrumb */

.apcg-modern-page .publications-breadcrumb {
    display: flex;

    align-items: center;

    gap: 0.6rem;

    margin-bottom: 3rem;

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

    font-size: 0.8rem;
}


.apcg-modern-page
.publications-breadcrumb a {
    display: inline-flex;

    align-items: center;

    gap: 0.45rem;

    color:
        rgba(
            255,
            255,
            255,
            0.75
        );
}


.apcg-modern-page
.publications-breadcrumb a:hover {
    color: #ffffff;
}


.apcg-modern-page
.publications-breadcrumb > i {
    font-size: 0.65rem;
}


/* Hero content */

.apcg-modern-page
.publications-hero-content {
    max-width: 850px;
}


.apcg-modern-page
.publications-hero-label {
    display: inline-flex;

    align-items: center;

    gap: 0.8rem;

    margin-bottom: 1.2rem;

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

    font-size: 0.78rem;

    font-weight: 800;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


.apcg-modern-page
.publications-hero-label::before {
    content: "";

    width: 34px;

    height: 2px;

    background-color:
        var(--apcg-primary);
}


.apcg-modern-page
.publications-hero h1 {
    max-width: 900px;

    margin: 0 0 1.5rem;

    color: #ffffff;

    font-size:
        clamp(2.3rem, 4vw, 3.7rem);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -0.055em;
}


.apcg-modern-page
.publications-hero-content > p {
    max-width: 720px;

    margin:
        0 0 2rem;

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

    font-size: 1.05rem;

    line-height: 1.85;
}


/* Hero button */

.apcg-modern-page
.publications-hero-button {
    display: inline-flex;

    align-items: center;

    gap: 0.75rem;

    padding:
        0.9rem
        1.45rem;

    color: #ffffff;

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

    border-radius: 50rem;

    font-size: 0.9rem;

    font-weight: 700;

    transition:
        background-color
        0.25s ease,
        transform
        0.25s ease;
}


.apcg-modern-page
.publications-hero-button:hover {
    color: #ffffff;

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

    transform:
        translateY(-2px);
}


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

.apcg-modern-page
.publications-introduction {
    padding:
        7rem 0;

    background-color:
        #ffffff;
}


.apcg-modern-page
.publications-introduction h2 {
    max-width: 760px;

    margin:
        0 0 2rem;

    color:
        var(--apcg-text);

    font-size:
        clamp(
            2.3rem,
            4vw,
            3.7rem
        );

    font-weight: 800;

    line-height: 1.08;

    letter-spacing:
        -0.045em;
}


.apcg-modern-page
.publications-introduction p {
    max-width: 760px;

    color:
        var(--apcg-muted);

    font-size: 1rem;

    line-height: 1.85;
}


.apcg-modern-page
.publications-introduction-lead {
    color:
        var(--apcg-text)
        !important;

    font-size:
        1.15rem
        !important;

    font-weight: 500;
}


/* Highlights */

.apcg-modern-page
.publications-highlights {
    padding: 0.65rem;

    background-color:
        var(--apcg-soft);

    border:
        1px solid
        #e6edf5;

    border-radius:
        1.4rem;
}


.apcg-modern-page
.publications-highlight {
    display: flex;

    align-items:
        flex-start;

    gap: 1rem;

    padding: 1.35rem;

    border-radius: 1rem;

    transition:
        background-color
        0.25s ease,
        box-shadow
        0.25s ease,
        transform
        0.25s ease;
}


.apcg-modern-page
.publications-highlight:hover {
    background-color:
        #ffffff;

    box-shadow:
        0 15px 35px
        rgba(
            19,
            33,
            60,
            0.08
        );

    transform:
        translateX(5px);
}


.apcg-modern-page
.publications-highlight > span {
    display: grid;

    flex:
        0 0 52px;

    width: 52px;

    height: 52px;

    place-items: center;

    color:
        var(--apcg-primary);

    background-color:
        rgba(
            11,
            94,
            215,
            0.1
        );

    border-radius: 1rem;

    font-size: 1.35rem;
}


.apcg-modern-page
.publications-highlight strong {
    display: block;

    margin-bottom:
        0.35rem;

    color:
        var(--apcg-text);

    font-size: 0.98rem;
}


.apcg-modern-page
.publications-highlight p {
    margin: 0;

    color:
        var(--apcg-muted);

    font-size: 0.86rem;

    line-height: 1.65;
}


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

.apcg-modern-page
.publications-directory-section {
    padding:
        7rem 0;

    background-color:
        var(--apcg-soft);
}


.apcg-modern-page
.publications-directory-heading {
    display: flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap: 2rem;

    margin-bottom:
        2.5rem;
}


.apcg-modern-page
.publications-directory-heading h2 {
    margin:
        0 0 0.8rem;

    color:
        var(--apcg-text);

    font-size:
        clamp(
            2.3rem,
            4vw,
            3.7rem
        );

    font-weight: 800;

    line-height: 1.08;

    letter-spacing:
        -0.045em;
}


.apcg-modern-page
.publications-directory-heading p {
    margin: 0;

    color:
        var(--apcg-muted);
}


.apcg-modern-page
.publications-result-count {
    flex: 0 0 auto;

    padding:
        0.65rem 1rem;

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

    background-color:
        rgba(
            11,
            94,
            215,
            0.08
        );

    border-radius:
        50rem;

    font-size: 0.82rem;

    font-weight: 700;
}


/* ==================================================
   TOOLBAR
================================================== */

.apcg-modern-page .publications-toolbar {
    display: grid;
    grid-template-columns:
        minmax(280px, 1fr)
        190px
        190px
        190px;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #ffffff;
    border: 1px solid #e3e9f1;
    border-radius: 1.2rem;
    box-shadow: 0 10px 35px rgba(19, 33, 60, 0.05);
}


/* Search */

.apcg-modern-page
.publications-search {
    position: relative;

    display: flex;

    align-items: center;
}


.apcg-modern-page
.publications-search > i {
    position: absolute;

    left: 1rem;

    z-index: 2;

    color:
        var(--apcg-muted);

    pointer-events: none;
}


.apcg-modern-page
.publications-search input {
    width: 100%;

    min-height: 52px;

    margin: 0;

    padding:
        0.8rem
        3rem
        0.8rem
        2.8rem;

    color:
        var(--apcg-text);

    background-color:
        var(--apcg-soft);

    border:
        1px solid
        transparent;

    border-radius:
        0.85rem;

    font-family: inherit;

    font-size: 0.88rem;

    outline: none;

    transition:
        border-color
        0.25s ease,
        background-color
        0.25s ease,
        box-shadow
        0.25s ease;
}


.apcg-modern-page
.publications-search input:focus {
    background-color:
        #ffffff;

    border-color:
        rgba(
            11,
            94,
            215,
            0.45
        );

    box-shadow:
        0 0 0 4px
        rgba(
            11,
            94,
            215,
            0.08
        );
}


.apcg-modern-page
.publications-search button {
    position: absolute;

    right: 0.6rem;

    display: grid;

    width: 34px;

    height: 34px;

    margin: 0;

    padding: 0;

    place-items: center;

    color:
        var(--apcg-muted);

    background:
        transparent;

    border: 0;

    border-radius: 50%;

    cursor: pointer;
}


.apcg-modern-page
.publications-search button:hover {
    color:
        var(--apcg-primary);

    background-color:
        rgba(
            11,
            94,
            215,
            0.08
        );
}


/* Select */

.apcg-modern-page
.publications-select-wrapper {
    position: relative;

    display: flex;

    align-items: center;
}


.apcg-modern-page
.publications-select-wrapper > i:first-child {
    position: absolute;

    left: 1rem;

    z-index: 2;

    color:
        var(--apcg-muted);

    pointer-events: none;
}


.apcg-modern-page
.publications-select-wrapper > i:last-child {
    position: absolute;

    right: 1rem;

    z-index: 2;

    color:
        var(--apcg-muted);

    font-size: 0.75rem;

    pointer-events: none;
}


.apcg-modern-page
.publications-select-wrapper select {
    width: 100%;

    min-height: 52px;

    margin: 0;

    padding:
        0.8rem
        2.5rem
        0.8rem
        2.7rem;

    color:
        var(--apcg-text);

    background-color:
        var(--apcg-soft);

    border:
        1px solid
        transparent;

    border-radius:
        0.85rem;

    appearance: none;

    font-family: inherit;

    font-size: 0.84rem;

    font-weight: 650;

    outline: none;

    cursor: pointer;
}


.apcg-modern-page
.publications-select-wrapper select:focus {
    background-color:
        #ffffff;

    border-color:
        rgba(
            11,
            94,
            215,
            0.45
        );

    box-shadow:
        0 0 0 4px
        rgba(
            11,
            94,
            215,
            0.08
        );
}


/* ==================================================
   ACTIVE FILTERS
================================================== */

.apcg-modern-page
.publications-active-filters {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 0.7rem;

    margin-bottom: 2rem;

    padding:
        0.8rem 1rem;

    color:
        var(--apcg-muted);

    font-size: 0.78rem;
}


.apcg-modern-page
.publications-filter-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 0.5rem;
}


.apcg-modern-page
.publications-filter-tags span {
    padding:
        0.4rem 0.65rem;

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

    background-color:
        rgba(
            11,
            94,
            215,
            0.08
        );

    border-radius:
        50rem;
}


.apcg-modern-page
.publications-active-filters button {
    width: auto;

    margin: 0;

    padding: 0;

    color:
        var(--apcg-primary);

    background:
        transparent;

    border: 0;

    font-family: inherit;

    font-size: 0.78rem;

    font-weight: 700;

    cursor: pointer;
}


/* ==================================================
   YEAR HEADING
================================================== */

.apcg-modern-page
.publication-year-heading {
    display: flex;

    align-items: center;

    gap: 1.2rem;

    margin:
        3.5rem 0
        1.2rem;
}


.apcg-modern-page
.publication-year-heading:first-child {
    margin-top: 0;
}


.apcg-modern-page
.publication-year-heading span {
    color:
        var(--apcg-text);

    font-size: 1.65rem;

    font-weight: 800;

    letter-spacing:
        -0.04em;
}


.apcg-modern-page
.publication-year-heading div {
    height: 1px;

    flex-grow: 1;

    background-color:
        #dce4ee;
}


/* ==================================================
   PUBLICATION CARD
================================================== */

.apcg-modern-page
.publications-list {
    display: grid;

    gap: 0.8rem;
}


.apcg-modern-page
.publication-card {
    display: grid;

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

    gap: 1.25rem;

    padding: 1.7rem;

    background-color:
        #ffffff;

    border:
        1px solid
        #e3e9f1;

    border-radius:
        1.15rem;

    box-shadow:
        0 8px 30px
        rgba(
            19,
            33,
            60,
            0.045
        );

    animation:
        publicationEnter
        0.5s ease
        both;

    animation-delay:
        var(
            --publication-delay
        );

    transition:
        border-color
        0.3s ease,
        box-shadow
        0.3s ease,
        transform
        0.3s ease;
}


.apcg-modern-page
.publication-card:hover {
    border-color:
        rgba(
            11,
            94,
            215,
            0.25
        );

    box-shadow:
        0 20px 50px
        rgba(
            19,
            33,
            60,
            0.1
        );

    transform:
        translateY(-4px);
}


@keyframes publicationEnter {

    from {

        opacity: 0;

        transform:
            translateY(15px);

    }


    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


.apcg-modern-page
.publication-number {
    display: grid;

    width: 52px;

    height: 52px;

    place-items: center;

    color:
        var(--apcg-primary);

    background-color:
        rgba(
            11,
            94,
            215,
            0.09
        );

    border-radius:
        0.9rem;

    font-size: 0.72rem;

    font-weight: 800;
}


.apcg-modern-page
.publication-meta {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 0.7rem;

    margin-bottom:
        0.75rem;
}


.apcg-modern-page
.publication-year {
    display: inline-flex;

    padding:
        0.32rem
        0.6rem;

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

    background-color:
        rgba(
            11,
            94,
            215,
            0.08
        );

    border-radius:
        50rem;

    font-size: 0.7rem;

    font-weight: 800;
}


.apcg-modern-page
.publication-journal {
    display: inline-flex;

    align-items: center;

    gap: 0.4rem;

    color:
        var(--apcg-muted);

    font-size: 0.75rem;

    font-style: italic;
}


.apcg-modern-page
.publication-card h3 {
    max-width: 1050px;

    margin:
        0 0 0.85rem;

    color:
        var(--apcg-text);

    font-size:
        clamp(
            1rem,
            1.5vw,
            1.2rem
        );

    font-weight: 700;

    line-height: 1.55;
}


.apcg-modern-page
.publication-card h3 a {
    color:
        var(--apcg-text);
}


.apcg-modern-page
.publication-card h3 a:hover {
    color:
        var(--apcg-primary);
}


.apcg-modern-page
.publication-authors {
    max-width: 1050px;

    margin:
        0 0 1rem;

    color:
        var(--apcg-muted);

    font-size: 0.86rem;

    line-height: 1.7;
}


.apcg-modern-page
.publication-footer {
    display: flex;

    align-items: center;

    padding-top:
        0.9rem;

    border-top:
        1px solid
        #edf1f6;
}


.apcg-modern-page
.publication-link {
    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    color:
        var(--apcg-primary);

    font-size: 0.8rem;

    font-weight: 700;
}


.apcg-modern-page
.publication-link i {
    transition:
        transform
        0.25s ease;
}


.apcg-modern-page
.publication-link:hover i {
    transform:
        translate(
            3px,
            -3px
        );
}


.apcg-modern-page
.publication-link-unavailable {
    color:
        #9aa5b4;

    font-size: 0.75rem;
}


/* ==================================================
   EMPTY AND STATUS
================================================== */

.apcg-modern-page
.publications-status {
    display: flex;

    min-height: 180px;

    align-items: center;

    justify-content: center;

    gap: 0.75rem;

    color:
        var(--apcg-muted);

    text-align: center;
}


.apcg-modern-page
.publications-error {
    min-height: auto;

    justify-content:
        flex-start;

    margin-bottom: 2rem;

    padding: 1.25rem;

    color: #842029;

    text-align: left;

    background-color:
        #f8d7da;

    border:
        1px solid
        #f5c2c7;

    border-radius: 1rem;
}


.apcg-modern-page
.publications-error i {
    font-size: 1.5rem;
}


.apcg-modern-page
.publications-error strong,

.apcg-modern-page
.publications-error span {
    display: block;
}


.apcg-modern-page
.publications-empty {
    padding:
        5rem 1.5rem;

    text-align: center;

    background-color:
        #ffffff;

    border:
        1px solid
        #e3e9f1;

    border-radius:
        1.2rem;
}


.apcg-modern-page
.publications-empty > span {
    display: grid;

    width: 70px;

    height: 70px;

    margin:
        0 auto
        1.3rem;

    place-items: center;

    color:
        var(--apcg-primary);

    background-color:
        rgba(
            11,
            94,
            215,
            0.09
        );

    border-radius: 50%;

    font-size: 1.5rem;
}


.apcg-modern-page
.publications-empty h3 {
    margin:
        0 0 0.7rem;

    color:
        var(--apcg-text);

    font-size: 1.4rem;

    font-weight: 750;
}


.apcg-modern-page
.publications-empty p {
    margin:
        0 0 1.3rem;

    color:
        var(--apcg-muted);
}


.apcg-modern-page
.publications-empty button {
    width: auto;

    margin: 0;

    padding:
        0.75rem
        1.1rem;

    color: #ffffff;

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

    border: 0;

    border-radius:
        50rem;

    font-family: inherit;

    font-size: 0.82rem;

    font-weight: 700;
}


/* ==================================================
   LOAD MORE
================================================== */

.apcg-modern-page
.publications-load-more-wrapper {
    margin-top: 3rem;

    text-align: center;
}


.apcg-modern-page
.publications-load-more {
    display: inline-flex;

    width: auto;

    align-items: center;

    justify-content: center;

    gap: 0.6rem;

    margin: 0;

    padding:
        0.9rem
        1.4rem;

    color:
        var(--apcg-primary);

    background-color:
        #ffffff;

    border:
        1px solid
        rgba(
            11,
            94,
            215,
            0.28
        );

    border-radius:
        50rem;

    font-family: inherit;

    font-size: 0.85rem;

    font-weight: 700;

    cursor: pointer;
}


.apcg-modern-page
.publications-load-more:hover {
    color: #ffffff;

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

    border-color:
        var(--apcg-primary);
}


.apcg-modern-page
.publications-load-more span {
    color: inherit;

    opacity: 0.7;

    font-size: 0.72rem;
}


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

.apcg-modern-page
.publications-cta-section {
    padding:
        7rem 0;

    background-color:
        #ffffff;
}


.apcg-modern-page
.publications-cta {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 3rem;

    padding: 4rem;

    color: #ffffff;

    background:
        linear-gradient(
            120deg,
            #061735,
            #0a3973
        );

    border-radius:
        1.8rem;

    box-shadow:
        0 30px 80px
        rgba(
            7,
            26,
            58,
            0.2
        );
}


.apcg-modern-page
.publications-cta > div:first-child {
    max-width: 700px;
}


.apcg-modern-page
.publications-cta
> div:first-child
> span {
    display: block;

    margin-bottom: 1rem;

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

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}


.apcg-modern-page
.publications-cta h2 {
    margin:
        0 0 1.2rem;

    color: #ffffff;

    font-size:
        clamp(
            2rem,
            4vw,
            3.5rem
        );

    font-weight: 800;

    line-height: 1.08;

    letter-spacing:
        -0.045em;
}


.apcg-modern-page
.publications-cta p {
    margin: 0;

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

    line-height: 1.8;
}


.apcg-modern-page
.publications-cta-links {
    display: flex;

    flex: 0 0 auto;

    flex-direction: column;

    gap: 0.8rem;
}


.apcg-modern-page
.publications-cta-primary,

.apcg-modern-page
.publications-cta-secondary {
    display: inline-flex;

    min-width: 205px;

    align-items: center;

    justify-content: center;

    gap: 0.65rem;

    padding:
        0.9rem
        1.3rem;

    border-radius:
        50rem;

    font-size: 0.85rem;

    font-weight: 700;
}


.apcg-modern-page
.publications-cta-primary {
    color:
        var(--apcg-navy);

    background-color:
        #ffffff;
}


.apcg-modern-page
.publications-cta-primary:hover {
    color:
        var(--apcg-primary);

    transform:
        translateY(-2px);
}


.apcg-modern-page
.publications-cta-secondary {
    color: #ffffff;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.25
        );
}


.apcg-modern-page
.publications-cta-secondary:hover {
    color: #ffffff;

    background-color:
        rgba(
            255,
            255,
            255,
            0.1
        );
}
.apcg-modern-page .publication-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.apcg-modern-page .publication-tags span {
    display: inline-flex;
    padding: 0.35rem 0.6rem;
    color: var(--apcg-primary-dark);
    background-color: rgba(11, 94, 215, 0.08);
    border-radius: 50rem;
    font-size: 0.68rem;
    font-weight: 700;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (
    max-width: 991.98px
) {

    .apcg-modern-page
    .publications-hero {

        min-height: 590px;

        background-position:
            60% center;

    }


    .apcg-modern-page
    .publications-hero-overlay {

        background:

            linear-gradient(

                90deg,

                rgba(
                    3,
                    14,
                    35,
                    0.97
                ),

                rgba(
                    5,
                    30,
                    68,
                    0.72
                )

            );

    }


    .apcg-modern-page
    .publications-introduction,

    .apcg-modern-page
    .publications-directory-section,

    .apcg-modern-page
    .publications-cta-section {

        padding:
            5rem 0;

    }


    .apcg-modern-page
    .publications-directory-heading {

        align-items:
            flex-start;

        flex-direction:
            column;

    }


    

    .apcg-modern-page .publications-toolbar {
        grid-template-columns:
            1fr
            1fr
            1fr;
    }

    .apcg-modern-page .publications-search {
        grid-column: 1 / -1;
    }

    .apcg-modern-page
    .publications-cta {

        align-items:
            flex-start;

        flex-direction:
            column;

        padding: 3rem;

    }


    .apcg-modern-page
    .publications-cta-links {

        width: 100%;

        flex-direction: row;

    }

}
.publication-card {
    position: relative;

    border-inline-start:
        3px solid transparent;
}


.publication-card--tagged {
    border-inline-start-color:
        var(
            --publication-reference-color
        );
}


.publication-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 0.5rem;

    margin-top: 0.9rem;
}


.publication-tag {
    display: inline-flex;

    align-items: center;

    gap: 0.4rem;

    padding:
        0.2rem
        0.5rem;

    color: inherit;

    background: transparent;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.1
        );

    border-radius: 100px;

    font-size: 0.75rem;

    font-weight: 500;

    line-height: 1.2;
}


.publication-tag-dot {
    width: 0.4rem;

    height: 0.4rem;

    flex: 0 0 auto;

    background:
        var(
            --publication-tag-color
        );

    border-radius: 50%;
}


@media (
    max-width: 575.98px
) {

    .apcg-modern-page
    .publications-hero {

        min-height: 560px;

    }


    .apcg-modern-page
    .publications-hero-container {

        padding-top: 7rem;

        padding-bottom: 4rem;

    }


    .apcg-modern-page
    .publications-breadcrumb {

        margin-bottom: 2rem;

    }


    .apcg-modern-page
    .publications-hero h1 {

        font-size: 2.9rem;

    }


    .apcg-modern-page
    .publications-hero-content > p {

        font-size: 0.94rem;

        line-height: 1.75;

    }


    .apcg-modern-page
    .publications-introduction,

    .apcg-modern-page
    .publications-directory-section,

    .apcg-modern-page
    .publications-cta-section {

        padding:
            4rem 0;

    }


   .apcg-modern-page .publications-toolbar {
        grid-template-columns: 1fr;
    }


    .apcg-modern-page
    .publications-search {

        grid-column: auto;

    }


    .apcg-modern-page
    .publication-card {

        grid-template-columns:
            1fr;

        padding: 1.35rem;

    }


    .apcg-modern-page
    .publication-number {

        width: 42px;

        height: 42px;

    }


    .apcg-modern-page
    .publication-year-heading {

        margin-top: 2.5rem;

    }


    .apcg-modern-page
    .publications-cta {

        padding:
            2.2rem
            1.5rem;

        border-radius:
            1.3rem;

    }


    .apcg-modern-page
    .publications-cta-links {

        flex-direction:
            column;

    }


    .apcg-modern-page
    .publications-cta-primary,

    .apcg-modern-page
    .publications-cta-secondary {

        width: 100%;

    }

}


@media (
    prefers-reduced-motion:
    reduce
) {

    .apcg-modern-page
    .publication-card {

        animation: none;

        transition: none;

    }

}



/* ==================================================
   INFRASTRUCTURE PAGE
================================================== */

.apcg-modern-page.infrastructure-page {
    background-color: #ffffff;
}


/* ==================================================
   HERO
================================================== */

.apcg-modern-page .infrastructure-hero {
    position: relative;

    display: flex;

    min-height: 650px;

    align-items: center;

    overflow: hidden;

    color: #ffffff;

    background:
        url("../images/joshua.jpg")
        center center / cover
        no-repeat;
}


.apcg-modern-page
.infrastructure-hero-overlay {
    position: absolute;

    inset: 0;

    background:

        linear-gradient(

            90deg,

            rgba(
                3,
                14,
                35,
                0.98
            ) 0%,

            rgba(
                5,
                30,
                68,
                0.86
            ) 50%,

            rgba(
                5,
                30,
                68,
                0.25
            ) 100%

        );
}


.apcg-modern-page
.infrastructure-hero-container {
    position: relative;

    z-index: 2;

    padding-top: 8rem;

    padding-bottom: 6rem;
}


/* Breadcrumb */

.apcg-modern-page
.infrastructure-breadcrumb {
    display: flex;

    align-items: center;

    gap: 0.6rem;

    margin-bottom: 3rem;

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

    font-size: 0.8rem;
}


.apcg-modern-page
.infrastructure-breadcrumb a {
    display: inline-flex;

    align-items: center;

    gap: 0.45rem;

    color:
        rgba(
            255,
            255,
            255,
            0.75
        );
}


.apcg-modern-page
.infrastructure-breadcrumb a:hover {
    color: #ffffff;
}


.apcg-modern-page
.infrastructure-breadcrumb > i {
    font-size: 0.65rem;
}


/* Hero content */

.apcg-modern-page
.infrastructure-hero-content {
    max-width: 900px;
}


.apcg-modern-page
.infrastructure-hero-label {
    display: inline-flex;

    align-items: center;

    gap: 0.8rem;

    margin-bottom: 1.2rem;

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

    font-size: 0.78rem;

    font-weight: 800;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


.apcg-modern-page
.infrastructure-hero-label::before {
    content: "";

    width: 34px;

    height: 2px;

    background-color:
        var(--apcg-primary);
}


.apcg-modern-page
.infrastructure-hero h1 {
   max-width: 900px;

    margin: 0 0 1.5rem;

    color: #ffffff;

    font-size:
        clamp(2.3rem, 4vw, 3.7rem);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -0.055em;
}


.apcg-modern-page
.infrastructure-hero-content > p {
    max-width: 750px;

    margin:
        0 0 2rem;

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

    font-size: 1.05rem;

    line-height: 1.85;
}


.apcg-modern-page
.infrastructure-hero-button {
    display: inline-flex;

    align-items: center;

    gap: 0.75rem;

    padding:
        0.9rem
        1.45rem;

    color: #ffffff;

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

    border-radius: 50rem;

    font-size: 0.9rem;

    font-weight: 700;

    transition:
        background-color
        0.25s ease,
        transform
        0.25s ease;
}


.apcg-modern-page
.infrastructure-hero-button:hover {
    color: #ffffff;

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

    transform:
        translateY(-2px);
}


/* ==================================================
   INTRODUCTION
================================================== */

.apcg-modern-page
.infrastructure-introduction {
    padding:
        7rem 0;

    background-color:
        #ffffff;
}


.apcg-modern-page
.infrastructure-introduction h2 {
    max-width: 760px;

    margin:
        0 0 2rem;

    color:
        var(--apcg-text);

    font-size:
        clamp(
            2.3rem,
            4vw,
            3.7rem
        );

    font-weight: 800;

    line-height: 1.08;

    letter-spacing:
        -0.045em;
}


.apcg-modern-page
.infrastructure-introduction p {
    max-width: 760px;

    color:
        var(--apcg-muted);

    line-height: 1.85;
}


.apcg-modern-page
.infrastructure-introduction-lead {
    color:
        var(--apcg-text)
        !important;

    font-size:
        1.15rem
        !important;

    font-weight: 500;
}


/* Capabilities */

.apcg-modern-page
.infrastructure-capabilities {
    padding: 0.65rem;

    background-color:
        var(--apcg-soft);

    border:
        1px solid
        #e6edf5;

    border-radius:
        1.4rem;
}


.apcg-modern-page
.infrastructure-capability {
    display: flex;

    align-items:
        flex-start;

    gap: 1rem;

    padding: 1.35rem;

    border-radius: 1rem;

    transition:
        background-color
        0.25s ease,
        box-shadow
        0.25s ease,
        transform
        0.25s ease;
}


.apcg-modern-page
.infrastructure-capability:hover {
    background-color:
        #ffffff;

    box-shadow:
        0 15px 35px
        rgba(
            19,
            33,
            60,
            0.08
        );

    transform:
        translateX(5px);
}


.apcg-modern-page
.infrastructure-capability > span {
    display: grid;

    flex:
        0 0 52px;

    width: 52px;

    height: 52px;

    place-items: center;

    color:
        var(--apcg-primary);

    background-color:
        rgba(
            11,
            94,
            215,
            0.1
        );

    border-radius: 1rem;

    font-size: 1.35rem;
}


.apcg-modern-page
.infrastructure-capability strong {
    display: block;

    margin-bottom:
        0.35rem;

    color:
        var(--apcg-text);

    font-size: 0.98rem;
}


.apcg-modern-page
.infrastructure-capability p {
    margin: 0;

    color:
        var(--apcg-muted);

    font-size: 0.86rem;

    line-height: 1.65;
}


/* ==================================================
   DIRECTORY
================================================== */

.apcg-modern-page
.infrastructure-directory-section {
    padding:
        7rem 0;

    background-color:
        var(--apcg-soft);
}


.apcg-modern-page
.infrastructure-directory-heading {
    display: flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap: 2rem;

    margin-bottom:
        2.5rem;
}


.apcg-modern-page
.infrastructure-directory-heading h2 {
    margin:
        0 0 0.8rem;

    color:
        var(--apcg-text);

    font-size:
        clamp(
            2.3rem,
            4vw,
            3.7rem
        );

    font-weight: 800;

    line-height: 1.08;

    letter-spacing:
        -0.045em;
}


.apcg-modern-page
.infrastructure-directory-heading p {
    max-width: 680px;

    margin: 0;

    color:
        var(--apcg-muted);

    line-height: 1.75;
}


.apcg-modern-page
.infrastructure-result-count {
    flex: 0 0 auto;

    padding:
        0.65rem 1rem;

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

    background-color:
        rgba(
            11,
            94,
            215,
            0.08
        );

    border-radius:
        50rem;

    font-size: 0.82rem;

    font-weight: 700;
}


/* ==================================================
   SEARCH
================================================== */

.apcg-modern-page
.infrastructure-search-wrapper {
    max-width: 650px;

    margin-bottom: 1rem;
}


.apcg-modern-page
.infrastructure-search {
    position: relative;

    display: flex;

    align-items: center;
}


.apcg-modern-page
.infrastructure-search > i {
    position: absolute;

    left: 1.1rem;

    z-index: 2;

    color:
        var(--apcg-muted);

    pointer-events: none;
}


.apcg-modern-page
.infrastructure-search input {
    width: 100%;

    min-height: 56px;

    margin: 0;

    padding:
        0.85rem
        3.2rem
        0.85rem
        3rem;

    color:
        var(--apcg-text);

    background-color:
        #ffffff;

    border:
        1px solid
        #dfe6ef;

    border-radius:
        1rem;

    font-family: inherit;

    font-size: 0.9rem;

    outline: none;

    box-shadow:
        0 8px 25px
        rgba(
            19,
            33,
            60,
            0.04
        );
}


.apcg-modern-page
.infrastructure-search input:focus {
    border-color:
        rgba(
            11,
            94,
            215,
            0.5
        );

    box-shadow:
        0 0 0 4px
        rgba(
            11,
            94,
            215,
            0.08
        );
}


.apcg-modern-page
.infrastructure-search button {
    position: absolute;

    right: 0.7rem;

    display: grid;

    width: 36px;

    height: 36px;

    margin: 0;

    padding: 0;

    place-items: center;

    color:
        var(--apcg-muted);

    background:
        transparent;

    border: 0;

    border-radius: 50%;

    cursor: pointer;
}


/* ==================================================
   FILTERS
================================================== */

.apcg-modern-page
.infrastructure-filters {
    display: flex;

    flex-wrap: wrap;

    gap: 0.65rem;

    margin-bottom: 3rem;
}


.apcg-modern-page
.infrastructure-filter {
    width: auto;

    margin: 0;

    padding:
        0.72rem
        1.05rem;

    color:
        var(--apcg-muted);

    background-color:
        #ffffff;

    border:
        1px solid
        #dfe6f0;

    border-radius:
        50rem;

    font-family: inherit;

    font-size: 0.8rem;

    font-weight: 700;

    cursor: pointer;

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


.apcg-modern-page
.infrastructure-filter:hover {
    color:
        var(--apcg-primary);

    border-color:
        rgba(
            11,
            94,
            215,
            0.35
        );

    transform:
        translateY(-2px);
}


.apcg-modern-page
.infrastructure-filter.active {
    color: #ffffff;

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

    border-color:
        var(--apcg-primary);
}


/* ==================================================
   GRID
================================================== */

.apcg-modern-page
.infrastructure-grid {
    display: grid;

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

    gap: 1.5rem;
}


/* ==================================================
   INFRASTRUCTURE CARD
================================================== */

.apcg-modern-page
.infrastructure-card {
    display: flex;

    min-width: 0;

    flex-direction: column;

    overflow: hidden;

    background-color:
        #ffffff;

    border:
        1px solid
        #e3e9f1;

    border-radius:
        1.25rem;

    box-shadow:
        0 10px 35px
        rgba(
            19,
            33,
            60,
            0.055
        );

    transition:
        border-color
        0.3s ease,
        box-shadow
        0.3s ease,
        transform
        0.3s ease;
}


.apcg-modern-page
.infrastructure-card:hover {
    border-color:
        rgba(
            11,
            94,
            215,
            0.25
        );

    box-shadow:
        0 25px 60px
        rgba(
            19,
            33,
            60,
            0.13
        );

    transform:
        translateY(-7px);
}


.apcg-modern-page
.infrastructure-card-image {
    position: relative;

    display: block;

    height: 260px;

    overflow: hidden;

    background-color:
        #dfe7ef;
}


.apcg-modern-page
.infrastructure-card-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(

            180deg,

            transparent
            45%,

            rgba(
                3,
                15,
                34,
                0.45
            )
            100%

        );

    pointer-events: none;
}


.apcg-modern-page
.infrastructure-card-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform
        0.6s ease;
}


.apcg-modern-page
.infrastructure-card:hover
.infrastructure-card-image img {
    transform:
        scale(1.06);
}


.apcg-modern-page
.infrastructure-card-category {
    position: absolute;

    z-index: 2;

    bottom: 1rem;

    left: 1rem;

    display: inline-flex;

    align-items: center;

    gap: 0.45rem;

    padding:
        0.48rem
        0.72rem;

    color: #ffffff;

    background-color:
        rgba(
            5,
            23,
            50,
            0.82
        );

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

    border-radius:
        50rem;

    backdrop-filter:
        blur(10px);

    font-size: 0.7rem;

    font-weight: 700;
}


/* Card content */

.apcg-modern-page
.infrastructure-card-content {
    display: flex;

    flex: 1;

    flex-direction: column;

    padding: 1.6rem;
}


.apcg-modern-page
.infrastructure-card-location {
    display: inline-flex;

    align-items: center;

    gap: 0.4rem;

    margin-bottom:
        0.8rem;

    color:
        var(--apcg-primary);

    font-size: 0.7rem;

    font-weight: 700;
}


.apcg-modern-page
.infrastructure-card h3 {
    margin:
        0 0 0.9rem;

    color:
        var(--apcg-text);

    font-size: 1.25rem;

    font-weight: 750;

    line-height: 1.35;

    letter-spacing:
        -0.025em;
}


.apcg-modern-page
.infrastructure-card h3 a {
    color:
        var(--apcg-text);
}


.apcg-modern-page
.infrastructure-card h3 a:hover {
    color:
        var(--apcg-primary);
}


.apcg-modern-page
.infrastructure-card p {
    margin:
        0 0 1.5rem;

    color:
        var(--apcg-muted);

    font-size: 0.87rem;

    line-height: 1.75;
}


.apcg-modern-page
.infrastructure-card-link {
    display: inline-flex;

    align-items: center;

    align-self:
        flex-start;

    gap: 0.55rem;

    margin-top: auto;

    color:
        var(--apcg-primary);

    font-size: 0.8rem;

    font-weight: 700;
}


.apcg-modern-page
.infrastructure-card-link i {
    transition:
        transform
        0.25s ease;
}


.apcg-modern-page
.infrastructure-card-link:hover i {
    transform:
        translateX(5px);
}


/* ==================================================
   EMPTY
================================================== */

.apcg-modern-page
.infrastructure-empty {
    padding:
        5rem
        1.5rem;

    text-align: center;

    background-color:
        #ffffff;

    border:
        1px solid
        #e3e9f1;

    border-radius:
        1.3rem;
}


.apcg-modern-page
.infrastructure-empty > span {
    display: grid;

    width: 70px;

    height: 70px;

    margin:
        0 auto
        1.3rem;

    place-items: center;

    color:
        var(--apcg-primary);

    background-color:
        rgba(
            11,
            94,
            215,
            0.09
        );

    border-radius: 50%;

    font-size: 1.5rem;
}


.apcg-modern-page
.infrastructure-empty h3 {
    margin:
        0 0 0.7rem;

    color:
        var(--apcg-text);

    font-size: 1.4rem;

    font-weight: 750;
}


.apcg-modern-page
.infrastructure-empty p {
    margin:
        0 0 1.3rem;

    color:
        var(--apcg-muted);
}


.apcg-modern-page
.infrastructure-empty button {
    width: auto;

    margin: 0;

    padding:
        0.75rem
        1.1rem;

    color: #ffffff;

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

    border: 0;

    border-radius:
        50rem;

    font-family: inherit;

    font-size: 0.82rem;

    font-weight: 700;
}


/* ==================================================
   CTA
================================================== */

.apcg-modern-page
.infrastructure-cta-section {
    padding:
        7rem 0;

    background-color:
        var(--apcg-soft);
}


.apcg-modern-page
.infrastructure-cta {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 3rem;

    padding: 4rem;

    color: #ffffff;

    background:

        linear-gradient(

            120deg,

            #061735,

            #0a3973

        );

    border-radius:
        1.8rem;

    box-shadow:
        0 30px 80px
        rgba(
            7,
            26,
            58,
            0.2
        );
}


.apcg-modern-page
.infrastructure-cta
> div:first-child {
    max-width: 700px;
}


.apcg-modern-page
.infrastructure-cta
> div:first-child
> span {
    display: block;

    margin-bottom: 1rem;

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

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing:
        0.13em;

    text-transform:
        uppercase;
}


.apcg-modern-page
.infrastructure-cta h2 {
    margin:
        0 0 1.2rem;

    color: #ffffff;

    font-size:
        clamp(
            2rem,
            4vw,
            3.5rem
        );

    font-weight: 800;

    line-height: 1.08;

    letter-spacing:
        -0.045em;
}


.apcg-modern-page
.infrastructure-cta p {
    margin: 0;

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

    line-height: 1.8;
}


.apcg-modern-page
.infrastructure-cta-links {
    display: flex;

    flex: 0 0 auto;

    flex-direction:
        column;

    gap: 0.8rem;
}


.apcg-modern-page
.infrastructure-cta-primary,

.apcg-modern-page
.infrastructure-cta-secondary {
    display: inline-flex;

    min-width: 205px;

    align-items: center;

    justify-content:
        center;

    gap: 0.65rem;

    padding:
        0.9rem
        1.3rem;

    border-radius:
        50rem;

    font-size: 0.85rem;

    font-weight: 700;
}


.apcg-modern-page
.infrastructure-cta-primary {
    color:
        var(--apcg-navy);

    background-color:
        #ffffff;
}


.apcg-modern-page
.infrastructure-cta-primary:hover {
    color:
        var(--apcg-primary);

    transform:
        translateY(-2px);
}


.apcg-modern-page
.infrastructure-cta-secondary {
    color: #ffffff;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.25
        );
}


.apcg-modern-page
.infrastructure-cta-secondary:hover {
    color: #ffffff;

    background-color:
        rgba(
            255,
            255,
            255,
            0.1
        );
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (
    max-width: 1199.98px
) {

    .apcg-modern-page
    .infrastructure-grid {

        grid-template-columns:

            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );

    }

}


@media (
    max-width: 991.98px
) {

    .apcg-modern-page
    .infrastructure-hero {

        min-height: 600px;

        background-position:
            60% center;

    }


    .apcg-modern-page
    .infrastructure-hero-overlay {

        background:

            linear-gradient(

                90deg,

                rgba(
                    3,
                    14,
                    35,
                    0.98
                ),

                rgba(
                    5,
                    30,
                    68,
                    0.72
                )

            );

    }


    .apcg-modern-page
    .infrastructure-introduction,

    .apcg-modern-page
    .infrastructure-directory-section,

    .apcg-modern-page
    .infrastructure-cta-section {

        padding:
            5rem 0;

    }


    .apcg-modern-page
    .infrastructure-directory-heading {

        align-items:
            flex-start;

        flex-direction:
            column;

    }


    .apcg-modern-page
    .infrastructure-cta {

        align-items:
            flex-start;

        flex-direction:
            column;

        padding: 3rem;

    }


    .apcg-modern-page
    .infrastructure-cta-links {

        width: 100%;

        flex-direction: row;

    }

}


@media (
    max-width: 767.98px
) {

    .apcg-modern-page
    .infrastructure-grid {

        grid-template-columns:
            1fr;

    }


    .apcg-modern-page
    .infrastructure-card-image {

        height: 300px;

    }

}


@media (
    max-width: 575.98px
) {

    .apcg-modern-page
    .infrastructure-hero {

        min-height: 580px;

    }


    .apcg-modern-page
    .infrastructure-hero-container {

        padding-top: 7rem;

        padding-bottom: 4rem;

    }


    .apcg-modern-page
    .infrastructure-breadcrumb {

        margin-bottom: 2rem;

    }


    .apcg-modern-page
    .infrastructure-hero h1 {

        font-size: 2.8rem;

    }


    .apcg-modern-page
    .infrastructure-hero-content > p {

        font-size: 0.94rem;

        line-height: 1.75;

    }


    .apcg-modern-page
    .infrastructure-introduction,

    .apcg-modern-page
    .infrastructure-directory-section,

    .apcg-modern-page
    .infrastructure-cta-section {

        padding:
            4rem 0;

    }


    .apcg-modern-page
    .infrastructure-filters {

        flex-wrap: nowrap;

        margin-right: -1rem;

        margin-left: -1rem;

        padding-right: 1rem;

        padding-bottom: 0.5rem;

        padding-left: 1rem;

        overflow-x: auto;

    }


    .apcg-modern-page
    .infrastructure-filter {

        flex: 0 0 auto;

    }


    .apcg-modern-page
    .infrastructure-card-image {

        height: 235px;

    }


    .apcg-modern-page
    .infrastructure-card-content {

        padding: 1.35rem;

    }


    .apcg-modern-page
    .infrastructure-cta {

        padding:
            2.2rem
            1.5rem;

        border-radius:
            1.3rem;

    }


    .apcg-modern-page
    .infrastructure-cta-links {

        flex-direction:
            column;

    }


    .apcg-modern-page
    .infrastructure-cta-primary,

    .apcg-modern-page
    .infrastructure-cta-secondary {

        width: 100%;

    }

}


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

.apcg-modern-page.news-page {
    background-color: #ffffff;
}


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

.apcg-modern-page .news-page-hero {
    position: relative;
    display: flex;
    min-height: 640px;
    align-items: center;
    overflow: hidden;
    color: #ffffff;

    background:
        url("../images/absolutvision.jpg")
        center 45% / cover no-repeat;
}


.apcg-modern-page .news-page-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 14, 35, 0.97) 0%,
            rgba(5, 30, 68, 0.86) 50%,
            rgba(5, 30, 68, 0.28) 100%
        );
}


.apcg-modern-page .news-page-hero-container {
    position: relative;
    z-index: 2;
    padding-top: 8rem;
    padding-bottom: 6rem;
}


.apcg-modern-page .news-page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.8rem;
}


.apcg-modern-page .news-page-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.75);
}


.apcg-modern-page .news-page-breadcrumb a:hover {
    color: #ffffff;
}


.apcg-modern-page .news-page-breadcrumb > i {
    font-size: 0.65rem;
}


.apcg-modern-page .news-page-hero-content {
    max-width: 880px;
}


.apcg-modern-page .news-page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}


.apcg-modern-page .news-page-hero-label::before {
    content: "";
    width: 34px;
    height: 2px;
    background-color: var(--apcg-primary);
}


.apcg-modern-page .news-page-hero h1 {
     max-width: 900px;

    margin: 0 0 1.5rem;

    color: #ffffff;

    font-size:
        clamp(2.3rem, 4vw, 3.7rem);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -0.055em;
}


.apcg-modern-page .news-page-hero-content > p {
    max-width: 700px;
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.85;
}


.apcg-modern-page .news-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}


.apcg-modern-page .news-page-hero-primary,
.apcg-modern-page .news-page-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1.4rem;
    border-radius: 50rem;
    font-size: 0.88rem;
    font-weight: 700;
}


.apcg-modern-page .news-page-hero-primary {
    color: #ffffff;
    background-color: var(--apcg-primary);
}


.apcg-modern-page .news-page-hero-primary:hover {
    color: #ffffff;
    background-color: var(--apcg-primary-dark);
    transform: translateY(-2px);
}


.apcg-modern-page .news-page-hero-secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}


.apcg-modern-page .news-page-hero-secondary:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}


/* ==================================================
   INTRODUCTION
================================================== */

.apcg-modern-page .news-page-introduction {
    padding: 7rem 0;
    background-color: #ffffff;
}


.apcg-modern-page .news-page-introduction h2 {
    max-width: 760px;
    margin: 0 0 2rem;
    color: var(--apcg-text);
    font-size: clamp(2.3rem, 4vw, 3.7rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
}


.apcg-modern-page .news-page-introduction p {
    max-width: 760px;
    color: var(--apcg-muted);
    line-height: 1.85;
}


.apcg-modern-page .news-page-introduction-lead {
    color: var(--apcg-text) !important;
    font-size: 1.15rem !important;
    font-weight: 500;
}


.apcg-modern-page .news-page-highlights {
    padding: 0.65rem;
    background-color: var(--apcg-soft);
    border: 1px solid #e6edf5;
    border-radius: 1.4rem;
}


.apcg-modern-page .news-page-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: 1rem;
    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}


.apcg-modern-page .news-page-highlight:hover {
    background-color: #ffffff;
    box-shadow: 0 15px 35px rgba(19, 33, 60, 0.08);
    transform: translateX(5px);
}


.apcg-modern-page .news-page-highlight > span {
    display: grid;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--apcg-primary);
    background-color: rgba(11, 94, 215, 0.1);
    border-radius: 1rem;
    font-size: 1.35rem;
}


.apcg-modern-page .news-page-highlight strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--apcg-text);
    font-size: 0.98rem;
}


.apcg-modern-page .news-page-highlight p {
    margin: 0;
    color: var(--apcg-muted);
    font-size: 0.86rem;
    line-height: 1.65;
}


/* ==================================================
   DIRECTORY
================================================== */

.apcg-modern-page .news-page-directory {
    padding: 7rem 0;
    background-color: var(--apcg-soft);
}


.apcg-modern-page .news-page-directory-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}


.apcg-modern-page .news-page-directory-heading h2 {
    margin: 0 0 0.8rem;
    color: var(--apcg-text);
    font-size: clamp(2.3rem, 4vw, 3.7rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
}


.apcg-modern-page .news-page-directory-heading p {
    margin: 0;
    color: var(--apcg-muted);
}


.apcg-modern-page .news-result-count {
    flex: 0 0 auto;
    padding: 0.65rem 1rem;
    color: var(--apcg-primary-dark);
    background-color: rgba(11, 94, 215, 0.08);
    border-radius: 50rem;
    font-size: 0.82rem;
    font-weight: 700;
}


/* Toolbar */

.apcg-modern-page .news-page-toolbar {
    margin-bottom: 3rem;
}


.apcg-modern-page .news-page-search {
    position: relative;
    display: flex;
    max-width: 680px;
    align-items: center;
    margin-bottom: 1rem;
}


.apcg-modern-page .news-page-search > i {
    position: absolute;
    left: 1rem;
    z-index: 2;
    color: var(--apcg-muted);
    pointer-events: none;
}


.apcg-modern-page .news-page-search input {
    width: 100%;
    min-height: 56px;
    margin: 0;
    padding: 0.85rem 3rem 0.85rem 2.8rem;
    color: var(--apcg-text);
    background-color: #ffffff;
    border: 1px solid #dfe6ef;
    border-radius: 1rem;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
}


.apcg-modern-page .news-page-search input:focus {
    border-color: rgba(11, 94, 215, 0.5);
    box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.08);
}


.apcg-modern-page .news-page-search button {
    position: absolute;
    right: 0.7rem;
    display: grid;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    place-items: center;
    color: var(--apcg-muted);
    background: transparent;
    border: 0;
    border-radius: 50%;
}


.apcg-modern-page .news-page-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}


.apcg-modern-page .news-page-filter {
    width: auto;
    margin: 0;
    padding: 0.72rem 1rem;
    color: var(--apcg-muted);
    background-color: #ffffff;
    border: 1px solid #dfe6f0;
    border-radius: 50rem;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}


.apcg-modern-page .news-page-filter:hover {
    color: var(--apcg-primary);
    border-color: rgba(11, 94, 215, 0.35);
    transform: translateY(-2px);
}


.apcg-modern-page .news-page-filter.active {
    color: #ffffff;
    background-color: var(--apcg-primary);
    border-color: var(--apcg-primary);
}


/* ==================================================
   NEWS GRID AND CARDS
================================================== */

.apcg-modern-page .news-page-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}


.apcg-modern-page .news-page-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #e3e9f1;
    border-radius: 1.25rem;
    box-shadow: 0 10px 35px rgba(19, 33, 60, 0.055);
    animation: newsCardEnter 0.5s ease both;
    animation-delay: var(--news-delay);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


@keyframes newsCardEnter {

    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.apcg-modern-page .news-page-card:hover {
    border-color: rgba(11, 94, 215, 0.25);
    box-shadow: 0 25px 60px rgba(19, 33, 60, 0.13);
    transform: translateY(-7px);
}


.apcg-modern-page .news-page-card-image {
    position: relative;
    display: block;
    height: 245px;
    overflow: hidden;
    background-color: #dfe7ef;
}


.apcg-modern-page .news-page-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}


.apcg-modern-page .news-page-card:hover
.news-page-card-image img {
    transform: scale(1.055);
}


.apcg-modern-page .news-page-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--apcg-primary);
    background:
        linear-gradient(
            135deg,
            rgba(11, 94, 215, 0.14),
            rgba(7, 26, 58, 0.08)
        );
    font-size: 3rem;
}


.apcg-modern-page .news-page-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.45rem 0.75rem;
    color: #ffffff;
    background-color: rgba(5, 23, 50, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50rem;
    backdrop-filter: blur(10px);
    font-size: 0.68rem;
    font-weight: 700;
}


.apcg-modern-page .news-page-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.55rem;
}


.apcg-modern-page .news-page-card-date {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
    color: var(--apcg-primary);
    font-size: 0.74rem;
    font-weight: 700;
}


.apcg-modern-page .news-page-card h3 {
    margin: 0 0 0.9rem;
    font-size: 1.2rem;
    font-weight: 750;
    line-height: 1.4;
}


.apcg-modern-page .news-page-card h3 a {
    color: var(--apcg-text);
}


.apcg-modern-page .news-page-card h3 a:hover {
    color: var(--apcg-primary);
}


.apcg-modern-page .news-page-card p {
    flex-grow: 1;
    margin: 0 0 1.3rem;
    color: var(--apcg-muted);
    font-size: 0.88rem;
    line-height: 1.75;
}


.apcg-modern-page .news-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}


.apcg-modern-page .news-card-tags span {
    padding: 0.35rem 0.58rem;
    color: var(--apcg-primary-dark);
    background-color: rgba(11, 94, 215, 0.08);
    border-radius: 50rem;
    font-size: 0.66rem;
    font-weight: 700;
}


.apcg-modern-page .news-page-card-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.55rem;
    color: var(--apcg-primary);
    font-size: 0.8rem;
    font-weight: 700;
}


.apcg-modern-page .news-page-card-link i {
    transition: transform 0.25s ease;
}


.apcg-modern-page .news-page-card:hover
.news-page-card-link i {
    transform: translateX(4px);
}


/* Status and empty */

.apcg-modern-page .news-page-status {
    display: flex;
    min-height: 180px;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--apcg-muted);
}


.apcg-modern-page .news-page-error {
    min-height: auto;
    justify-content: flex-start;
    margin-bottom: 2rem;
    padding: 1.25rem;
    color: #842029;
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
    border-radius: 1rem;
}


.apcg-modern-page .news-page-error strong,
.apcg-modern-page .news-page-error span {
    display: block;
}


.apcg-modern-page .news-page-empty {
    padding: 5rem 1.5rem;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #e3e9f1;
    border-radius: 1.3rem;
}


.apcg-modern-page .news-page-empty > span {
    display: grid;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.3rem;
    place-items: center;
    color: var(--apcg-primary);
    background-color: rgba(11, 94, 215, 0.09);
    border-radius: 50%;
    font-size: 1.5rem;
}


.apcg-modern-page .news-page-empty h3 {
    margin: 0 0 0.7rem;
    color: var(--apcg-text);
    font-size: 1.4rem;
    font-weight: 750;
}


.apcg-modern-page .news-page-empty p {
    margin: 0 0 1.3rem;
    color: var(--apcg-muted);
}


.apcg-modern-page .news-page-empty button {
    width: auto;
    margin: 0;
    padding: 0.75rem 1.1rem;
    color: #ffffff;
    background-color: var(--apcg-primary);
    border: 0;
    border-radius: 50rem;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
}


/* Load more */

.apcg-modern-page .news-load-more-wrapper {
    margin-top: 3rem;
    text-align: center;
}


.apcg-modern-page .news-load-more {
    display: inline-flex;
    width: auto;
    align-items: center;
    gap: 0.6rem;
    margin: 0;
    padding: 0.9rem 1.4rem;
    color: var(--apcg-primary);
    background-color: #ffffff;
    border: 1px solid rgba(11, 94, 215, 0.28);
    border-radius: 50rem;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
}


.apcg-modern-page .news-load-more:hover {
    color: #ffffff;
    background-color: var(--apcg-primary);
    border-color: var(--apcg-primary);
}


.apcg-modern-page .news-load-more span {
    color: inherit;
    opacity: 0.7;
    font-size: 0.72rem;
}


/* ==================================================
   SOCIAL PROMOTION
================================================== */

.apcg-modern-page .news-social-section {
    padding: 7rem 0;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(
            120deg,
            #05142f,
            #0a3973
        );
}


.apcg-modern-page .news-social-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);
    gap: 4rem;
    align-items: center;
}


.apcg-modern-page .news-social-label {
    display: block;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}


.apcg-modern-page .news-social-content h2 {
    margin: 0 0 1.3rem;
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.05em;
}


.apcg-modern-page .news-social-content > p {
    max-width: 610px;
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
}


.apcg-modern-page .news-social-note {
    display: flex;
    max-width: 560px;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.75);
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1rem;
    font-size: 0.82rem;
    line-height: 1.6;
}


.apcg-modern-page .news-social-note i {
    color: #ffffff;
    font-size: 1.1rem;
}


.apcg-modern-page .news-social-links {
    display: grid;
    gap: 1rem;
}


.apcg-modern-page .news-social-card {
    display: flex;
    min-height: 105px;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.2rem;
    backdrop-filter: blur(14px);
    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.apcg-modern-page .news-social-card:hover {
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}


.apcg-modern-page .news-social-icon {
    display: grid;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    place-items: center;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    font-size: 1.65rem;
}


.apcg-modern-page .news-social-text {
    display: flex;
    flex: 1;
    flex-direction: column;
}


.apcg-modern-page .news-social-text small {
    margin-bottom: 0.15rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.7rem;
}


.apcg-modern-page .news-social-text strong {
    color: #ffffff;
    font-size: 1.08rem;
}


.apcg-modern-page .news-social-card > i {
    color: rgba(255, 255, 255, 0.55);
}


.apcg-modern-page .news-social-facebook:hover {
    background-color: rgba(24, 119, 242, 0.28);
}


.apcg-modern-page .news-social-linkedin:hover {
    background-color: rgba(10, 102, 194, 0.3);
}


.apcg-modern-page .news-social-youtube:hover {
    background-color: rgba(255, 0, 0, 0.25);
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1199.98px) {

    .apcg-modern-page .news-page-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 991.98px) {

    .apcg-modern-page .news-page-hero {
        min-height: 590px;
    }

    .apcg-modern-page .news-page-introduction,
    .apcg-modern-page .news-page-directory,
    .apcg-modern-page .news-social-section {
        padding: 5rem 0;
    }

    .apcg-modern-page .news-page-directory-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .apcg-modern-page .news-social-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

}


@media (max-width: 767.98px) {

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

    .apcg-modern-page .news-page-card-image {
        height: 290px;
    }

}


@media (max-width: 575.98px) {

    .apcg-modern-page .news-page-hero {
        min-height: 570px;
    }

    .apcg-modern-page .news-page-hero-container {
        padding-top: 7rem;
        padding-bottom: 4rem;
    }

    .apcg-modern-page .news-page-hero h1 {
        font-size: 2.85rem;
    }

    .apcg-modern-page .news-page-hero-content > p {
        font-size: 0.94rem;
        line-height: 1.75;
    }

    .apcg-modern-page .news-page-introduction,
    .apcg-modern-page .news-page-directory,
    .apcg-modern-page .news-social-section {
        padding: 4rem 0;
    }

    .apcg-modern-page .news-page-filters {
        flex-wrap: nowrap;
        margin-right: -1rem;
        margin-left: -1rem;
        padding-right: 1rem;
        padding-bottom: 0.5rem;
        padding-left: 1rem;
        overflow-x: auto;
    }

    .apcg-modern-page .news-page-filter {
        flex: 0 0 auto;
    }

    .apcg-modern-page .news-page-card-image {
        height: 235px;
    }

    .apcg-modern-page .news-page-card-content {
        padding: 1.35rem;
    }

}


.project-logo {
    width: 100%;
    height: 100%;
    flex: 0 0 80px;

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

    padding: 8px;

    background: #fff;
    border-radius: 12px;
}

.project-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}



.projects-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.projects-pagination button {
    border: 1px solid #ddd;
    background: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: .2s;
}

.projects-pagination button:hover:not(:disabled) {
    background: #0d6efd;
    color: #fff;
}

.projects-pagination button.active {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.projects-pagination button:disabled {
    opacity: .5;
    cursor: not-allowed;
}

/* ==================================================
   THISSIO AIR MONITORING STATION
================================================== */

.infrastructure-page .thissio-overview-section {
    position: relative;
    margin-top: 0;
    padding: 7rem 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(11, 94, 215, 0.08),
            transparent 30rem
        ),
        var(--apcg-soft);
    margin-top:-100px;
}

.infrastructure-page .thissio-overview-section::before {
    position: absolute;
    top: 12rem;
    left: -15rem;
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    background: rgba(11, 94, 215, 0.06);
    filter: blur(80px);
    pointer-events: none;
    content: "";
}

.infrastructure-page .thissio-overview-section > .container {
    position: relative;
    z-index: 2;
}


/* ==================================================
   COMMON TYPOGRAPHY
================================================== */

.infrastructure-page .section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    color: var(--apcg-primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.infrastructure-page .section-label::before {
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--apcg-primary);
    content: "";
}

.infrastructure-page .thissio-section-title,
.infrastructure-page .thissio-panel-title {
    margin: 0 0 1.25rem;
    color: var(--apcg-text);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.infrastructure-page .thissio-panel-title {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

.infrastructure-page .thissio-lead {
    margin-bottom: 1.25rem;
    color: #344054;
    font-size: clamp(1.08rem, 1.8vw, 1.24rem);
    font-weight: 500;
    line-height: 1.8;
}

.infrastructure-page .thissio-text {
    margin-bottom: 1.15rem;
    color: var(--apcg-muted);
    font-size: 1rem;
    line-height: 1.85;
}

.infrastructure-page .section-heading {
    max-width: 760px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.infrastructure-page .section-heading .section-label {
    justify-content: center;
}

.infrastructure-page .section-heading h2 {
    margin: 0 0 1.15rem;
    color: var(--apcg-text);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.infrastructure-page .section-heading p {
    margin: 0;
    color: var(--apcg-muted);
    font-size: 1rem;
    line-height: 1.8;
}


/* ==================================================
   LOCATION CARD
================================================== */

.infrastructure-page .thissio-location-card {
    position: relative;
    height: 100%;
    padding: 2.2rem;
    overflow: hidden;
    border: 1px solid rgba(11, 94, 215, 0.14);
    border-radius: var(--apcg-radius);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(241, 247, 255, 0.98)
        );
    box-shadow: var(--apcg-shadow);
}

.infrastructure-page .thissio-location-card::after {
    position: absolute;
    top: -70px;
    right: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(11, 94, 215, 0.08);
    content: "";
}

.infrastructure-page .thissio-location-icon {
    position: relative;
    z-index: 2;
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    place-items: center;
    border-radius: 20px;
    color: #fff;
    background:
        linear-gradient(
            135deg,
            var(--apcg-primary),
            var(--apcg-primary-dark)
        );
    box-shadow: 0 14px 30px rgba(11, 94, 215, 0.24);
    font-size: 1.65rem;
}

.infrastructure-page .thissio-card-label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--apcg-primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.infrastructure-page .thissio-location-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    color: var(--apcg-text);
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.3;
}

.infrastructure-page .thissio-location-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.infrastructure-page .thissio-location-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: var(--apcg-muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.infrastructure-page .thissio-location-list i {
    flex: 0 0 auto;
    margin-top: 0.15rem;
    color: var(--apcg-primary);
    font-size: 1.05rem;
}


/* ==================================================
   STATISTICS
================================================== */

.infrastructure-page .thissio-stats-panel {
    overflow: hidden;
    border: 1px solid var(--apcg-border);
    border-radius: var(--apcg-radius);
    background: #fff;
    box-shadow: 0 18px 55px rgba(19, 33, 60, 0.08);
}

.infrastructure-page .thissio-stats-panel .stat-item {
    height: 100%;
    padding: 2.25rem 1rem;
    border-right: 1px solid var(--apcg-border);
    background: #fff;
    text-align: center;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.infrastructure-page .thissio-stats-panel .col-6:last-child .stat-item {
    border-right: 0;
}

.infrastructure-page .thissio-stats-panel .stat-item:hover {
    background: #f7faff;
    transform: translateY(-3px);
}

.infrastructure-page .thissio-stats-panel .stat-item i {
    display: block;
    margin-bottom: 1rem;
    color: var(--apcg-primary);
    font-size: 1.55rem;
}

.infrastructure-page .thissio-stats-panel .stat-item strong {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--apcg-text);
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 800;
    line-height: 1;
}

.infrastructure-page .thissio-stats-panel .stat-item span {
    display: block;
    color: var(--apcg-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.5;
    text-transform: uppercase;
}


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

.infrastructure-page .feature-card {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 290px;
    flex-direction: column;
    padding: 2rem;
    overflow: hidden;
    border: 1px solid var(--apcg-border);
    border-radius: var(--apcg-radius);
    background: #fff;
    box-shadow: 0 10px 35px rgba(19, 33, 60, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.infrastructure-page .feature-card::after {
    position: absolute;
    right: -60px;
    bottom: -70px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(11, 94, 215, 0.045);
    transition: transform 0.35s ease;
    content: "";
}

.infrastructure-page .feature-card:hover {
    border-color: rgba(11, 94, 215, 0.28);
    box-shadow: var(--apcg-shadow);
    transform: translateY(-8px);
}

.infrastructure-page .feature-card:hover::after {
    transform: scale(1.3);
}

.infrastructure-page .feature-card .icon-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 1.5rem;
    place-items: center;
    border-radius: 18px;
    color: var(--apcg-primary);
    background: rgba(11, 94, 215, 0.09);
    font-size: 1.45rem;
}

.infrastructure-page .feature-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 0.85rem;
    color: var(--apcg-text);
    font-size: 1.18rem;
    font-weight: 750;
    line-height: 1.4;
}

.infrastructure-page .feature-card p {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    margin: 0;
    color: var(--apcg-muted);
    font-size: 0.93rem;
    line-height: 1.75;
}


/* ==================================================
   CONTENT PANEL
================================================== */

.infrastructure-page .thissio-content-panel {
    padding: clamp(1.5rem, 4vw, 3.5rem);
    border: 1px solid var(--apcg-border);
    border-radius: calc(var(--apcg-radius) + 0.25rem);
    background: #fff;
    box-shadow: var(--apcg-shadow);
}

.infrastructure-page .thissio-panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.1rem;
    border: 1px solid rgba(11, 94, 215, 0.16);
    border-radius: 999px;
    color: var(--apcg-primary-dark);
    background: rgba(11, 94, 215, 0.07);
    font-size: 0.78rem;
    font-weight: 750;
}


/* ==================================================
   CAMPAIGN CARDS
================================================== */

.infrastructure-page .thissio-campaign-card {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 230px;
    gap: 1.15rem;
    padding: 1.6rem;
    overflow: hidden;
    border: 1px solid var(--apcg-border);
    border-radius: 1.1rem;
    background: #f9fbfe;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.infrastructure-page .thissio-campaign-card:hover {
    border-color: rgba(11, 94, 215, 0.25);
    background: #fff;
    box-shadow: 0 16px 35px rgba(19, 33, 60, 0.09);
    transform: translateY(-5px);
}

.infrastructure-page .thissio-campaign-number {
    flex: 0 0 auto;
    color: rgba(11, 94, 215, 0.24);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.infrastructure-page .thissio-campaign-card > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.infrastructure-page .thissio-campaign-card > div > i {
    margin-bottom: 1.1rem;
    color: var(--apcg-primary);
    font-size: 1.45rem;
}

.infrastructure-page .thissio-campaign-card h3 {
    margin: 0 0 0.7rem;
    color: var(--apcg-text);
    font-size: 1.06rem;
    font-weight: 750;
    line-height: 1.4;
}

.infrastructure-page .thissio-campaign-card p {
    margin: 0;
    color: var(--apcg-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.infrastructure-page .thissio-wide-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    border: 1px solid rgba(11, 94, 215, 0.16);
    border-radius: 1.1rem;
    background:
        linear-gradient(
            110deg,
            rgba(11, 94, 215, 0.08),
            rgba(255, 255, 255, 0.96)
        );
}

.infrastructure-page .thissio-wide-feature > span {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: var(--apcg-primary);
    font-size: 1.25rem;
}

.infrastructure-page .thissio-wide-feature h3 {
    margin: 0 0 0.55rem;
    color: var(--apcg-text);
    font-size: 1.12rem;
    font-weight: 750;
}

.infrastructure-page .thissio-wide-feature p {
    margin: 0;
    color: var(--apcg-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}


/* ==================================================
   STATION IMAGE
================================================== */

.infrastructure-page .thissio-image-panel {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: calc(var(--apcg-radius) + 0.25rem);
    background: var(--apcg-navy);
    box-shadow: var(--apcg-shadow);
}

.infrastructure-page .thissio-image-wrapper {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.infrastructure-page .thissio-image-wrapper::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 42%,
            rgba(4, 17, 39, 0.88) 100%
        );
    content: "";
}

.infrastructure-page .thissio-image-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.infrastructure-page .thissio-image-panel:hover img {
    transform: scale(1.035);
}

.infrastructure-page .thissio-image-panel figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    color: #fff;
}

.infrastructure-page .thissio-image-panel figcaption span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.infrastructure-page .thissio-image-panel figcaption p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: right;
}


/* ==================================================
   MEASUREMENT CARDS
================================================== */

.infrastructure-page .thissio-measurement-card {
    position: relative;
    height: 100%;
    min-height: 365px;
    padding: 2rem;
    overflow: hidden;
    border: 1px solid var(--apcg-border);
    border-radius: var(--apcg-radius);
    background: #fff;
    box-shadow: 0 10px 30px rgba(19, 33, 60, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.infrastructure-page .thissio-measurement-card:hover {
    border-color: rgba(11, 94, 215, 0.24);
    box-shadow: var(--apcg-shadow);
    transform: translateY(-7px);
}

.infrastructure-page .thissio-measurement-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 1.4rem;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background:
        linear-gradient(
            135deg,
            var(--apcg-primary),
            var(--apcg-primary-dark)
        );
    font-size: 1.35rem;
    box-shadow: 0 12px 25px rgba(11, 94, 215, 0.2);
}

.infrastructure-page .thissio-measurement-card h3 {
    margin: 0 0 1.15rem;
    color: var(--apcg-text);
    font-size: 1.15rem;
    font-weight: 750;
    line-height: 1.4;
}

.infrastructure-page .thissio-measurement-card ul {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.infrastructure-page .thissio-measurement-card li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--apcg-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.infrastructure-page .thissio-measurement-card li::before {
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--apcg-primary);
    content: "";
}


/* ==================================================
   CHEMICAL ANALYSIS PANEL
================================================== */

.infrastructure-page .thissio-analysis-panel {
    padding: clamp(1.5rem, 4vw, 3.5rem);
    overflow: hidden;
    border: 1px solid var(--apcg-border);
    border-radius: calc(var(--apcg-radius) + 0.25rem);
    background:
        linear-gradient(
            120deg,
            #fff 0%,
            #fff 57%,
            #f0f6ff 100%
        );
    box-shadow: var(--apcg-shadow);
}

.infrastructure-page .thissio-analysis-visual {
    position: relative;
    display: grid;
    min-height: 350px;
    place-items: center;
    overflow: hidden;
    border-radius: var(--apcg-radius);
    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(66, 153, 255, 0.55),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            var(--apcg-primary-dark),
            var(--apcg-navy)
        );
}

.infrastructure-page .thissio-analysis-visual::before,
.infrastructure-page .thissio-analysis-visual::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    content: "";
}

.infrastructure-page .thissio-analysis-visual::before {
    width: 250px;
    height: 250px;
}

.infrastructure-page .thissio-analysis-visual::after {
    width: 170px;
    height: 170px;
}

.infrastructure-page .thissio-analysis-visual span {
    position: relative;
    z-index: 2;
    display: grid;
    width: 100px;
    height: 100px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 30px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    font-size: 2.6rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.24);
}

.infrastructure-page .thissio-analysis-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.infrastructure-page .thissio-analysis-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(11, 94, 215, 0.14);
    border-radius: 999px;
    color: var(--apcg-primary-dark);
    background: rgba(11, 94, 215, 0.065);
    font-size: 0.78rem;
    font-weight: 700;
}


/* ==================================================
   OUTPUT CTA
================================================== */

.infrastructure-page .thissio-output-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: clamp(2rem, 5vw, 4rem);
    overflow: hidden;
    border-radius: calc(var(--apcg-radius) + 0.25rem);
    color: #fff;
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(60, 150, 255, 0.33),
            transparent 22rem
        ),
        linear-gradient(
            120deg,
            var(--apcg-navy),
            #0a3470
        );
    box-shadow: 0 24px 65px rgba(7, 26, 58, 0.24);
}

.infrastructure-page .thissio-output-card::before {
    position: absolute;
    top: -120px;
    right: 12%;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    content: "";
}

.infrastructure-page .thissio-output-card > * {
    position: relative;
    z-index: 2;
}

.infrastructure-page .thissio-output-card > div {
    max-width: 760px;
}

.infrastructure-page .thissio-output-card .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.infrastructure-page .thissio-output-card .section-label::before {
    background: rgba(255, 255, 255, 0.5);
}

.infrastructure-page .thissio-output-card h2 {
    margin: 0 0 1rem;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.infrastructure-page .thissio-output-card p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.96rem;
    line-height: 1.75;
}

.infrastructure-page .thissio-output-card .apcg-button {
    flex: 0 0 auto;
    border-color: #fff;
    color: var(--apcg-navy);
    background: #fff;
    white-space: nowrap;
}

.infrastructure-page .thissio-output-card .apcg-button:hover {
    border-color: #dce7f8;
    color: var(--apcg-navy);
    background: #dce7f8;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991.98px) {

    .infrastructure-page .thissio-overview-section {
        padding: 5.5rem 0;
    }

    .infrastructure-page .thissio-stats-panel .col-6:nth-child(2) .stat-item {
        border-right: 0;
    }

    .infrastructure-page .thissio-stats-panel .col-6:nth-child(-n + 2) .stat-item {
        border-bottom: 1px solid var(--apcg-border);
    }

    .infrastructure-page .thissio-image-panel figcaption {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
    }

    .infrastructure-page .thissio-image-panel figcaption p {
        text-align: left;
    }

    .infrastructure-page .thissio-output-card {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media (max-width: 767.98px) {

    .infrastructure-page .thissio-overview-section {
        padding: 4.5rem 0;
    }

    .infrastructure-page .thissio-location-card,
    .infrastructure-page .feature-card,
    .infrastructure-page .thissio-measurement-card {
        padding: 1.5rem;
    }

    .infrastructure-page .feature-card {
        min-height: auto;
    }

    .infrastructure-page .thissio-content-panel,
    .infrastructure-page .thissio-analysis-panel {
        padding: 1.4rem;
        border-radius: 1.15rem;
    }

    .infrastructure-page .thissio-campaign-card {
        min-height: auto;
    }

    .infrastructure-page .thissio-wide-feature {
        flex-direction: column;
    }

    .infrastructure-page .thissio-image-wrapper,
    .infrastructure-page .thissio-image-wrapper img {
        min-height: 420px;
    }

    .infrastructure-page .thissio-image-panel figcaption {
        padding: 1.4rem;
    }

    .infrastructure-page .thissio-analysis-visual {
        min-height: 280px;
    }

    .infrastructure-page .thissio-output-card {
        padding: 2rem 1.5rem;
        border-radius: 1.15rem;
    }

}

@media (max-width: 575.98px) {

    .infrastructure-page .thissio-stats-panel .stat-item {
        padding: 1.65rem 0.75rem;
    }

    .infrastructure-page .thissio-stats-panel .stat-item strong {
        font-size: 1.45rem;
    }

    .infrastructure-page .thissio-stats-panel .stat-item span {
        font-size: 0.64rem;
    }

    .infrastructure-page .thissio-campaign-card {
        gap: 0.85rem;
        padding: 1.25rem;
    }

    .infrastructure-page .thissio-campaign-number {
        font-size: 1.25rem;
    }

    .infrastructure-page .thissio-image-wrapper,
    .infrastructure-page .thissio-image-wrapper img {
        min-height: 360px;
    }

    .infrastructure-page .thissio-image-panel figcaption p {
        display: none;
    }

    .infrastructure-page .thissio-analysis-visual {
        min-height: 240px;
    }

    .infrastructure-page .thissio-output-card .apcg-button {
        width: 100%;
    }

}


/* ==================================================
   ACCESSIBILITY
================================================== */

@media (prefers-reduced-motion: reduce) {

    .infrastructure-page .feature-card,
    .infrastructure-page .thissio-campaign-card,
    .infrastructure-page .thissio-measurement-card,
    .infrastructure-page .thissio-image-wrapper img,
    .infrastructure-page .thissio-stats-panel .stat-item {
        transition: none;
    }

    .infrastructure-page .feature-card:hover,
    .infrastructure-page .thissio-campaign-card:hover,
    .infrastructure-page .thissio-measurement-card:hover,
    .infrastructure-page .thissio-stats-panel .stat-item:hover {
        transform: none;
    }

    .infrastructure-page .thissio-image-panel:hover img {
        transform: none;
    }

}


/* ==================================================
   MINIMAL MODELLING PAGE
================================================== */

.infrastructure-page .modelling-main-image {
    margin: 0;
    overflow: hidden;
    border-radius: var(--apcg-radius);
    background: #fff;
    box-shadow: var(--apcg-shadow);
}

.infrastructure-page .modelling-main-image img {
    width: 100%;
    min-height: 380px;
    object-fit: cover;
}

.infrastructure-page .modelling-specs {
    display: grid;
    gap: 0.8rem;
}

.infrastructure-page .modelling-specs div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--apcg-border);
    border-radius: 0.85rem;
    color: var(--apcg-muted);
    background: var(--apcg-soft);
    font-size: 0.9rem;
    font-weight: 600;
}

.infrastructure-page .modelling-specs i {
    color: var(--apcg-primary);
    font-size: 1.05rem;
}

.infrastructure-page .modelling-highlight {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(11, 94, 215, 0.15);
    border-radius: var(--apcg-radius);
    background: #fff;
}

.infrastructure-page .modelling-highlight-icon {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background: var(--apcg-primary);
    font-size: 1.3rem;
}

.infrastructure-page .modelling-highlight div {
    flex: 1;
}

.infrastructure-page .modelling-highlight h3 {
    margin: 0 0 0.35rem;
    color: var(--apcg-text);
    font-size: 1.1rem;
    font-weight: 750;
}

.infrastructure-page .modelling-highlight p {
    margin: 0;
    color: var(--apcg-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.infrastructure-page .modelling-system {
    margin-bottom: 2rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid var(--apcg-border);
    border-radius: var(--apcg-radius);
    background: #fff;
    box-shadow: 0 10px 35px rgba(19, 33, 60, 0.05);
}

.infrastructure-page .modelling-system-number {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--apcg-primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.infrastructure-page .modelling-system h3 {
    margin: 0 0 1rem;
    color: var(--apcg-text);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
}

.infrastructure-page .modelling-system p {
    margin-bottom: 1rem;
    color: var(--apcg-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.infrastructure-page .modelling-system-image {
    width: 100%;
    max-height: 420px;
    border-radius: 1rem;
    object-fit: contain;
    background: var(--apcg-soft);
}

.infrastructure-page .modelling-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.3rem;
}

.infrastructure-page .modelling-tags span {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    color: var(--apcg-primary-dark);
    background: rgba(11, 94, 215, 0.07);
    font-size: 0.72rem;
    font-weight: 700;
}

.infrastructure-page .modelling-small-card {
    min-height: 250px;
}

.infrastructure-page .modelling-wide-image {
    margin: 0;
    padding: 1rem;
    border: 1px solid var(--apcg-border);
    border-radius: var(--apcg-radius);
    background: #fff;
}

.infrastructure-page .modelling-wide-image img {
    width: 100%;
    max-height: 560px;
    object-fit: contain;
}

.infrastructure-page .modelling-wide-image figcaption {
    padding: 0.85rem 0.25rem 0;
    color: var(--apcg-muted);
    font-size: 0.82rem;
    text-align: center;
}

@media (max-width: 767.98px) {

    .infrastructure-page .modelling-main-image img {
        min-height: 260px;
    }

    .infrastructure-page .modelling-highlight {
        align-items: flex-start;
        flex-direction: column;
    }

    .infrastructure-page .modelling-system {
        padding: 1.4rem;
    }

}

/* ==================================================
   SENSOR NETWORK PAGE
================================================== */

.infrastructure-page .sensor-network-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.infrastructure-page .sensor-summary-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    border: 1px solid var(--apcg-border);
    border-radius: var(--apcg-radius);
    background: #fff;
    box-shadow: var(--apcg-shadow);
}

.infrastructure-page .sensor-summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 145px;
    padding: 1.5rem;
    border-right: 1px solid var(--apcg-border);
    border-bottom: 1px solid var(--apcg-border);
}

.infrastructure-page .sensor-summary-item:nth-child(2n) {
    border-right: 0;
}

.infrastructure-page .sensor-summary-item:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.infrastructure-page .sensor-summary-item i {
    color: var(--apcg-primary);
    font-size: 1.55rem;
}

.infrastructure-page .sensor-summary-item strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--apcg-text);
    font-size: 1.35rem;
    font-weight: 800;
}

.infrastructure-page .sensor-summary-item span {
    display: block;
    color: var(--apcg-muted);
    font-size: 0.8rem;
    line-height: 1.45;
}

.infrastructure-page .sensor-network-feature {
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid var(--apcg-border);
    border-radius: var(--apcg-radius);
    background: #fff;
    box-shadow: 0 10px 35px rgba(19, 33, 60, 0.05);
}

.infrastructure-page .sensor-network-feature h3 {
    margin: 0 0 1rem;
    color: var(--apcg-text);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
}

.infrastructure-page .sensor-network-feature p {
    margin-bottom: 1rem;
    color: var(--apcg-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.infrastructure-page .sensor-network-image {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--apcg-border);
    border-radius: 1rem;
    background: var(--apcg-soft);
}

.infrastructure-page .sensor-network-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.infrastructure-page .sensor-network-image figcaption {
    padding: 0.9rem 1rem;
    color: var(--apcg-muted);
    background: #fff;
    font-size: 0.78rem;
    line-height: 1.5;
    text-align: center;
}

.infrastructure-page .sensor-calibration {
    background:
        linear-gradient(
            110deg,
            rgba(11, 94, 215, 0.07),
            #fff
        );
}

.infrastructure-page .sensor-device-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--apcg-border);
    border-radius: var(--apcg-radius);
    background: #fff;
    box-shadow: 0 10px 30px rgba(19, 33, 60, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.infrastructure-page .sensor-device-card:hover {
    border-color: rgba(11, 94, 215, 0.24);
    box-shadow: var(--apcg-shadow);
    transform: translateY(-6px);
}

.infrastructure-page .sensor-device-image {
    height: 300px;
    padding: 1.25rem;
    background: var(--apcg-soft);
}

.infrastructure-page .sensor-device-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.infrastructure-page .sensor-device-content {
    padding: 1.5rem;
}

.infrastructure-page .sensor-device-content > span {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--apcg-primary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.infrastructure-page .sensor-device-content h3 {
    margin: 0 0 0.7rem;
    color: var(--apcg-text);
    font-size: 1.2rem;
    font-weight: 750;
}

.infrastructure-page .sensor-device-content p {
    margin: 0;
    color: var(--apcg-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.infrastructure-page .portable-instrument-list {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.infrastructure-page .portable-instrument-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--apcg-border);
    border-radius: 0.8rem;
    color: var(--apcg-muted);
    background: var(--apcg-soft);
    font-size: 0.85rem;
    font-weight: 600;
}

.infrastructure-page .portable-instrument-list i {
    color: var(--apcg-primary);
    font-size: 1rem;
}

@media (max-width: 767.98px) {

    .infrastructure-page .sensor-summary-card {
        grid-template-columns: 1fr;
    }

    .infrastructure-page .sensor-summary-item {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--apcg-border);
    }

    .infrastructure-page .sensor-summary-item:nth-last-child(-n + 2) {
        border-bottom: 1px solid var(--apcg-border);
    }

    .infrastructure-page .sensor-summary-item:last-child {
        border-bottom: 0;
    }

    .infrastructure-page .sensor-network-feature {
        padding: 1.4rem;
    }

    .infrastructure-page .sensor-device-image {
        height: 250px;
    }

}


/* ==================================================
   MAX-DOAS PAGE
================================================== */

.infrastructure-page .max-doas-summary {
    height: 100%;
}

.infrastructure-page .max-doas-image-card,
.infrastructure-page .max-doas-gallery-card {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--apcg-border);
    border-radius: var(--apcg-radius);
    background: #fff;
    box-shadow: 0 10px 35px rgba(19, 33, 60, 0.05);
}

.infrastructure-page .max-doas-image-card img {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    background: var(--apcg-soft);
}

.infrastructure-page .max-doas-image-card figcaption {
    padding: 1rem 1.2rem;
    color: var(--apcg-muted);
    font-size: 0.82rem;
    line-height: 1.55;
    text-align: center;
}

.infrastructure-page .max-doas-species-card {
    height: 100%;
    padding: 1.6rem 1rem;
    border: 1px solid var(--apcg-border);
    border-radius: 1rem;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 25px rgba(19, 33, 60, 0.04);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.infrastructure-page .max-doas-species-card:hover {
    border-color: rgba(11, 94, 215, 0.24);
    box-shadow: 0 15px 35px rgba(19, 33, 60, 0.09);
    transform: translateY(-5px);
}

.infrastructure-page .max-doas-species-card span {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--apcg-primary);
    font-size: 1.55rem;
    font-weight: 800;
}

.infrastructure-page .max-doas-species-card p {
    margin: 0;
    color: var(--apcg-muted);
    font-size: 0.82rem;
}

.infrastructure-page .max-doas-highlight {
    background:
        linear-gradient(
            110deg,
            rgba(11, 94, 215, 0.07),
            #fff
        );
}

.infrastructure-page .max-doas-gallery-card {
    height: 100%;
}

.infrastructure-page .max-doas-gallery-image {
    height: 360px;
    padding: 1rem;
    background: var(--apcg-soft);
}

.infrastructure-page .max-doas-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.infrastructure-page .max-doas-gallery-card figcaption {
    padding: 1.25rem;
}

.infrastructure-page .max-doas-gallery-card figcaption span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.55rem;
    color: var(--apcg-primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.infrastructure-page .max-doas-gallery-card figcaption p {
    margin: 0;
    color: var(--apcg-muted);
    font-size: 0.86rem;
    line-height: 1.65;
}

@media (max-width: 767.98px) {

    .infrastructure-page .max-doas-gallery-image {
        height: 280px;
    }

    .infrastructure-page .max-doas-image-card img {
        max-height: 360px;
    }

}


/* ==================================================
   MOBILE AIR-QUALITY MONITORING STATION
================================================== */

.infrastructure-page .mobile-aqms-image {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--apcg-border);
    border-radius: var(--apcg-radius);
    background: #fff;
    box-shadow: var(--apcg-shadow);
}

.infrastructure-page .mobile-aqms-image img {
    width: 100%;
    min-height: 390px;
    object-fit: cover;
}

.infrastructure-page .mobile-aqms-image figcaption {
    padding: 0.95rem 1.15rem;
    color: var(--apcg-muted);
    font-size: 0.8rem;
    line-height: 1.55;
    text-align: center;
}


/* Capability cards */

.infrastructure-page .mobile-aqms-capability {
    height: 100%;
    padding: 1.5rem;
    border: 1px solid var(--apcg-border);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 8px 25px rgba(19, 33, 60, 0.04);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.infrastructure-page .mobile-aqms-capability:hover {
    border-color: rgba(11, 94, 215, 0.25);
    box-shadow: 0 15px 35px rgba(19, 33, 60, 0.09);
    transform: translateY(-5px);
}

.infrastructure-page .mobile-aqms-capability > i {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 1.1rem;
    place-items: center;
    border-radius: 14px;
    color: var(--apcg-primary);
    background: rgba(11, 94, 215, 0.08);
    font-size: 1.2rem;
}

.infrastructure-page .mobile-aqms-capability h3 {
    margin: 0 0 0.65rem;
    color: var(--apcg-text);
    font-size: 1rem;
    font-weight: 750;
}

.infrastructure-page .mobile-aqms-capability p {
    margin: 0;
    color: var(--apcg-muted);
    font-size: 0.86rem;
    line-height: 1.65;
}


/* Equipment table */

.infrastructure-page .mobile-aqms-table-wrapper {
    overflow: hidden;
    border: 1px solid var(--apcg-border);
    border-radius: var(--apcg-radius);
    background: #fff;
    box-shadow: 0 10px 35px rgba(19, 33, 60, 0.05);
}

.infrastructure-page .mobile-aqms-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.infrastructure-page .mobile-aqms-table th {
    padding: 1.15rem 1.25rem;
    border: 0;
    color: #fff;
    background: var(--apcg-navy);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: left;
    text-transform: uppercase;
}

.infrastructure-page .mobile-aqms-table th:first-child {
    width: 42%;
}

.infrastructure-page .mobile-aqms-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--apcg-border);
    color: var(--apcg-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    vertical-align: middle;
}

.infrastructure-page .mobile-aqms-table tbody tr:last-child td {
    border-bottom: 0;
}

.infrastructure-page .mobile-aqms-table tbody tr {
    transition: background-color 0.2s ease;
}

.infrastructure-page .mobile-aqms-table tbody tr:hover {
    background: #f7faff;
}

.infrastructure-page .mobile-aqms-table td:first-child {
    color: var(--apcg-text);
    font-weight: 600;
}

.infrastructure-page .mobile-aqms-table td strong {
    color: var(--apcg-primary-dark);
    font-weight: 800;
}

.infrastructure-page .mobile-aqms-table-icon {
    display: inline-grid;
    width: 34px;
    height: 34px;
    margin-right: 0.7rem;
    place-items: center;
    border-radius: 10px;
    color: var(--apcg-primary);
    background: rgba(11, 94, 215, 0.08);
    font-size: 0.9rem;
    vertical-align: middle;
}


/* Summary */

.infrastructure-page .mobile-aqms-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--apcg-border);
    border-radius: 1rem;
    background: #fff;
}

.infrastructure-page .mobile-aqms-summary div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 80px;
    padding: 1rem;
    border-right: 1px solid var(--apcg-border);
    color: var(--apcg-muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
}

.infrastructure-page .mobile-aqms-summary div:last-child {
    border-right: 0;
}

.infrastructure-page .mobile-aqms-summary i {
    color: var(--apcg-primary);
    font-size: 1.1rem;
}


/* Note */

.infrastructure-page .mobile-aqms-note {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin: 1.25rem 0 0;
    padding: 1rem 1.2rem;
    border-radius: 0.85rem;
    color: var(--apcg-muted);
    background: rgba(11, 94, 215, 0.06);
    font-size: 0.82rem;
    line-height: 1.6;
}

.infrastructure-page .mobile-aqms-note i {
    flex: 0 0 auto;
    margin-top: 0.12rem;
    color: var(--apcg-primary);
}


/* Responsive */

@media (max-width: 767.98px) {

    .infrastructure-page .mobile-aqms-image img {
        min-height: 280px;
    }

    .infrastructure-page .mobile-aqms-table th,
    .infrastructure-page .mobile-aqms-table td {
        min-width: 260px;
        padding: 0.9rem 1rem;
    }

    .infrastructure-page .mobile-aqms-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .infrastructure-page .mobile-aqms-summary div:nth-child(2) {
        border-right: 0;
    }

    .infrastructure-page .mobile-aqms-summary div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--apcg-border);
    }

}

@media (max-width: 575.98px) {

    .infrastructure-page .mobile-aqms-summary {
        grid-template-columns: 1fr;
    }

    .infrastructure-page .mobile-aqms-summary div {
        border-right: 0;
        border-bottom: 1px solid var(--apcg-border);
    }

    .infrastructure-page .mobile-aqms-summary div:last-child {
        border-bottom: 0;
    }

}

/* ==================================================
   PERSON PROFILE
================================================== */

.apcg-modern-page .person-profile-section {
    position: relative;
    z-index: 3;
    margin-top: -100px;
    padding: 0 0 7rem;
    overflow: visible;
    background: var(--apcg-soft);
}

.apcg-modern-page .person-profile-section > .container {
    position: relative;
}


/* Loading and error */

.apcg-modern-page .person-profile-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 280px;
    padding: 2rem;
    color: var(--apcg-muted);
    background: #fff;
    border: 1px solid var(--apcg-border);
    border-radius: var(--apcg-radius);
    box-shadow: var(--apcg-shadow);
}

.apcg-modern-page .person-profile-error {
    align-items: flex-start;
    justify-content: flex-start;
    min-height: auto;
    color: #842029;
    background: #fff5f5;
    border-color: #f5c2c7;
}

.apcg-modern-page .person-profile-error > i {
    flex: 0 0 auto;
    margin-top: 0.1rem;
    font-size: 1.3rem;
}

.apcg-modern-page .person-profile-error strong,
.apcg-modern-page .person-profile-error span {
    display: block;
}

.apcg-modern-page .person-profile-error span {
    margin-top: 0.25rem;
    font-size: 0.9rem;
}


/* Main profile */

.apcg-modern-page .person-profile {
    overflow: hidden;
    border: 1px solid var(--apcg-border);
    border-radius: calc(var(--apcg-radius) + 0.25rem);
    background: #fff;
    box-shadow: var(--apcg-shadow);
}


/* Header */

.apcg-modern-page .person-profile-header {
    display: grid;
    grid-template-columns: minmax(160px, 260px) 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    padding: clamp(1.5rem, 5vw, 4rem);
    background:
        radial-gradient(
            circle at 95% 5%,
            rgba(11, 94, 215, 0.1),
            transparent 25rem
        ),
        #fff;
}

.apcg-modern-page .person-profile-image-wrapper {
    position: relative;
}

.apcg-modern-page .person-profile-image-wrapper::before {
    position: absolute;
    right: -18px;
    bottom: -18px;
    width: 78%;
    height: 78%;
    border-radius: var(--apcg-radius);
    background:
        linear-gradient(
            135deg,
            rgba(11, 94, 215, 0.16),
            rgba(11, 94, 215, 0.02)
        );
    content: "";
}

.apcg-modern-page .person-profile-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: var(--apcg-radius);
    background: #e9eef5;
    box-shadow: 0 20px 50px rgba(19, 33, 60, 0.16);
}

.apcg-modern-page .person-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apcg-modern-page .person-profile-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--apcg-primary);
    background:
        linear-gradient(
            145deg,
            rgba(11, 94, 215, 0.12),
            rgba(7, 26, 58, 0.08)
        );
    font-size: 5rem;
}

.apcg-modern-page .person-profile-introduction {
    align-self: center;
}

.apcg-modern-page .person-profile-name {
    margin: 0 0 0.75rem;
    color: var(--apcg-text);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.apcg-modern-page .person-profile-position {
    margin: 0 0 1.7rem;
    color: var(--apcg-primary);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    line-height: 1.5;
}

.apcg-modern-page .person-profile-description {
    max-width: 760px;
    color: var(--apcg-muted);
    font-size: 1rem;
    line-height: 1.85;
}

.apcg-modern-page .person-profile-description p {
    margin: 0;
}

.apcg-modern-page .person-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}


/* Information grid */

.apcg-modern-page .person-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    padding:
        0
        clamp(1.5rem, 5vw, 4rem)
        clamp(1.5rem, 5vw, 4rem);
}

.apcg-modern-page .person-profile-card {
    padding: 2rem;
    border: 1px solid var(--apcg-border);
    border-radius: var(--apcg-radius);
    background: var(--apcg-soft);
}

.apcg-modern-page .person-profile-card-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.apcg-modern-page .person-profile-card-icon {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 16px;
    color: var(--apcg-primary);
    background: rgba(11, 94, 215, 0.09);
    font-size: 1.25rem;
}

.apcg-modern-page .person-profile-card-heading span:not(
    .person-profile-card-icon
) {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--apcg-primary);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.apcg-modern-page .person-profile-card-heading h2 {
    margin: 0;
    color: var(--apcg-text);
    font-size: 1.2rem;
    font-weight: 750;
}


/* Contact list */

.apcg-modern-page .person-contact-list {
    display: grid;
    gap: 0.8rem;
}

.apcg-modern-page .person-contact-item {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem;
    border: 1px solid var(--apcg-border);
    border-radius: 0.9rem;
    color: var(--apcg-text);
    background: #fff;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.apcg-modern-page .person-contact-item:hover {
    color: var(--apcg-text);
    border-color: rgba(11, 94, 215, 0.25);
    box-shadow: 0 12px 30px rgba(19, 33, 60, 0.08);
    transform: translateY(-2px);
}

.apcg-modern-page .person-contact-item > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    color: var(--apcg-primary);
    background: rgba(11, 94, 215, 0.08);
}

.apcg-modern-page .person-contact-item small,
.apcg-modern-page .person-contact-item strong {
    display: block;
}

.apcg-modern-page .person-contact-item small {
    margin-bottom: 0.15rem;
    color: var(--apcg-muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.apcg-modern-page .person-contact-item strong {
    overflow-wrap: anywhere;
    font-size: 0.88rem;
    font-weight: 700;
}

.apcg-modern-page .person-contact-item > i {
    color: var(--apcg-primary);
}


/* Interests */

.apcg-modern-page .person-research-interests {
    color: var(--apcg-muted);
    font-size: 0.94rem;
    line-height: 1.75;
}

.apcg-modern-page .person-research-interests p {
    margin: 0;
}

.apcg-modern-page .person-interest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.apcg-modern-page .person-interest-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(11, 94, 215, 0.14);
    border-radius: 999px;
    color: var(--apcg-primary-dark);
    background: #fff;
    font-size: 0.78rem;
    font-weight: 700;
}


/* Address */

.apcg-modern-page .person-address-card {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    gap: 1.25rem;
    margin:
        0
        clamp(1.5rem, 5vw, 4rem)
        clamp(1.5rem, 5vw, 4rem);
    padding: 1.75rem;
    border-radius: var(--apcg-radius);
    color: #fff;
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(60, 150, 255, 0.26),
            transparent 18rem
        ),
        linear-gradient(
            120deg,
            var(--apcg-navy),
            #0a3470
        );
}

.apcg-modern-page .person-address-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 1.35rem;
}

.apcg-modern-page .person-address-label {
    display: block;
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.apcg-modern-page .person-address-card h2 {
    margin: 0 0 0.45rem;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 750;
}

.apcg-modern-page .person-address-card address {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-style: normal;
    line-height: 1.65;
}

.apcg-modern-page .person-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.apcg-modern-page .person-map-link:hover {
    color: var(--apcg-navy);
    background: #fff;
}


/* Empty values */

.apcg-modern-page .person-profile-empty {
    margin: 0;
    color: var(--apcg-muted);
    font-style: italic;
}


/* Responsive */

@media (max-width: 991.98px) {

    .apcg-modern-page .person-profile-header {
        grid-template-columns: 280px 1fr;
        gap: 2.5rem;
    }

    .apcg-modern-page .person-profile-grid {
        grid-template-columns: 1fr;
    }

    .apcg-modern-page .person-address-card {
        grid-template-columns: 58px 1fr;
    }

    .apcg-modern-page .person-map-link {
        grid-column: 2;
        justify-self: start;
    }

}

@media (max-width: 767.98px) {

    .apcg-modern-page .person-profile-section {
        margin-top: -60px;
        padding-bottom: 4.5rem;
    }

    .apcg-modern-page .person-profile-header {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .apcg-modern-page .person-profile-image-wrapper {
        width: min(100%, 320px);
        margin: 0 auto;
    }

    .apcg-modern-page .person-profile-introduction {
        text-align: center;
    }

    .apcg-modern-page .person-profile-description {
        text-align: left;
    }

    .apcg-modern-page .person-profile-actions {
        justify-content: center;
    }

    .apcg-modern-page .person-profile-grid {
        padding:
            0
            1.5rem
            1.5rem;
    }

    .apcg-modern-page .person-profile-card {
        padding: 1.4rem;
    }

    .apcg-modern-page .person-address-card {
        grid-template-columns: 1fr;
        margin:
            0
            1.5rem
            1.5rem;
        padding: 1.5rem;
    }

    .apcg-modern-page .person-map-link {
        grid-column: auto;
    }

}

@media (max-width: 575.98px) {

    .apcg-modern-page .person-profile-actions {
        flex-direction: column;
    }

    .apcg-modern-page .person-profile-actions .apcg-button {
        width: 100%;
    }

    .apcg-modern-page .person-contact-item {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .apcg-modern-page .person-contact-item > i {
        display: none;
    }

}

/* ==================================================
   PERSON BIOGRAPHY
================================================== */

.apcg-modern-page .person-biography {
    max-width: 780px;
}

.apcg-modern-page .person-description-preview,
.apcg-modern-page .person-description-full {
    color: var(--apcg-muted);
    font-size: 1rem;
    line-height: 1.85;
}

.apcg-modern-page .person-description-preview p,
.apcg-modern-page .person-description-full p {
    margin: 0 0 1rem;
}

.apcg-modern-page .person-description-preview p:last-child,
.apcg-modern-page .person-description-full p:last-child {
    margin-bottom: 0;
}


/* Full biography */

.apcg-modern-page .person-description-full {
    position: relative;
    max-width: 760px;
    margin-top: 1.25rem;
    padding: 1.5rem;
    border-left: 3px solid var(--apcg-primary);
    border-radius: 0 1rem 1rem 0;
    background: var(--apcg-soft);
}


/* Toggle */

.apcg-modern-page .person-description-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.25rem;
    padding: 0;
    border: 0;
    color: var(--apcg-primary);
    background: transparent;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 750;
    cursor: pointer;
}

.apcg-modern-page .person-description-toggle:hover {
    color: var(--apcg-primary-dark);
}

.apcg-modern-page .person-description-toggle i {
    font-size: 0.82rem;
    transition: transform 0.25s ease;
}

.apcg-modern-page
.person-description-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.apcg-modern-page
.person-description-toggle-close {
    display: none;
}

.apcg-modern-page
.person-description-toggle[aria-expanded="true"]
.person-description-toggle-open {
    display: none;
}

.apcg-modern-page
.person-description-toggle[aria-expanded="true"]
.person-description-toggle-close {
    display: inline;
}


/* Native hidden handling */

.apcg-modern-page
.person-description-preview[hidden],
.apcg-modern-page
.person-description-full[hidden],
.apcg-modern-page
.person-description-toggle[hidden] {
    display: none !important;
}


/* Mobile */

@media (max-width: 767.98px) {

    .apcg-modern-page .person-description-preview,
    .apcg-modern-page .person-description-full {
        font-size: 0.94rem;
        line-height: 1.75;
        text-align: left;
    }

    .apcg-modern-page .person-description-full {
        padding: 1.2rem;
    }

}