/* =========================================================
   NORTHERN SAMAR TOURISM
   MAIN STYLESHEET
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --ns-red: #d73827;
    --ns-red-dark: #b7291d;

    --ns-blue: #1493c1;
    --ns-blue-dark: #08749f;

    --ns-teal: #15999c;

    --ns-yellow: #f6b51b;

    --ns-navy: #123d58;
    --ns-navy-dark: #092c42;

    --ns-dark: #183744;

    --ns-text: #536975;
    --ns-muted: #748893;

    --ns-white: #ffffff;

    --ns-light: #f7fbfc;
    --ns-light-blue: #edf8fc;

    --ns-border:
        rgba(18, 61, 88, 0.11);

    --shadow-small:
        0 10px 30px
        rgba(18, 61, 88, 0.07);

    --shadow-large:
        0 25px 60px
        rgba(18, 61, 88, 0.14);

}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    color: var(--ns-text);

    background: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.6;
}


body.menu-open {
    overflow: hidden;
}


img {
    max-width: 1005

    display: block;
}


a {
    color: inherit;

    text-decoration: none;
}


button {
    font: inherit5
}


.container {
    width:
        min(
            1500px,
            calc(100% - 40px)
        );

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: relative;

    z-index: 9999;

    width: 100%;

    background:
        rgba(255, 255, 255, 0.98);

    border-bottom:
        1px solid
        rgba(18, 61, 88, 0.08);

    box-shadow:
        0 4px 20px
        rgba(18, 61, 88, 0.04);
}


.header-inner {
    min-height: 94px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.site-logo img {
    width: 235px;
    height: 120px;
    object-fit: contain;
}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.main-navigation {
    display: block;
}


.main-menu {
    display: flex;
    align-items: center;

    gap: 3px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.main-menu > li {
    position: relative;

    margin: 0;

    list-style: none;
}


.main-menu > li > a {
    position: relative;

    min-height: 94px;

    display: flex;
    align-items: center;

    gap: 6px;

    padding:
        0
        15px;

    color: var(--ns-navy);

    font-size: 13px;
    font-weight: 800;

    white-space: nowrap;

    transition:
        color .2s ease;
}


.main-menu > li > a:hover {
    color: var(--ns-red);
}


.main-menu > li > a::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 22px;

    height: 2px;

    border-radius: 999px;

    background: var(--ns-red);

    transform: scaleX(0);

    transition:
        transform .25s ease;
}


.main-menu > li:hover > a::after {
    transform: scaleX(1);
}


.menu-arrow {
    font-size: 11px;

    transition:
        transform .2s ease;
}


.menu-item-has-children:hover
.menu-arrow {
    transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN
========================================================= */

.dropdown-menu {
    position: absolute;

    top: calc(100% - 1px);
    left: 50%;

    z-index: 99999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
        translateX(-50%)
        translateY(12px);

    background: #ffffff;

    border:
        1px solid
        var(--ns-border);

    border-radius: 18px;

    box-shadow: var(--shadow-large);

    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;
}


.dropdown-menu::before {
    content: "";

    position: absolute;

    top: -15px;
    left: 0;

    width: 100%;
    height: 15px;
}


.menu-item-has-children:hover
> .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}


/* =========================================================
   WHERE TO GO
========================================================= */

.lgu-dropdown {
    width: 700px;

    padding: 25px;

    border-top:
        4px solid
        var(--ns-blue);
}


.dropdown-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 18px;
    padding-bottom: 18px;

    border-bottom:
        1px solid
        #e5edf1;
}


.dropdown-heading small {
    display: block;

    margin-bottom: 3px;

    color: var(--ns-red);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.dropdown-heading strong {
    display: block;

    color: var(--ns-navy);

    font-size: 18px;
}


.dropdown-heading > span {
    display: inline-flex;

    padding:
        7px
        12px;

    border-radius: 999px;

    color: var(--ns-blue-dark);

    background:
        rgba(20, 147, 193, .10);

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .5px;
}


.lgu-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 5px;
}


.lgu-grid a {
    padding:
        10px
        11px;

    border-radius: 8px;

    color: var(--ns-text);

    font-size: 13px;
    font-weight: 600;

    transition:
        color .2s ease,
        background .2s ease,
        transform .2s ease;
}


.lgu-grid a:hover {
    color: var(--ns-blue-dark);

    background:
        rgba(20, 147, 193, .09);

    transform:
        translateX(3px);
}


/* =========================================================
   CULTURAL DROPDOWN
========================================================= */

.cultural-dropdown {
    width: 355px;

    padding: 12px;

    border-top:
        4px solid
        var(--ns-red);
}


.cultural-dropdown > a {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 13px;

    border-radius: 12px;

    transition:
        background .2s ease;
}


.cultural-dropdown > a:hover {
    background:
        rgba(20, 147, 193, .07);
}


.cultural-icon {
    flex:
        0
        0
        45px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        var(--ns-light-blue);

    font-size: 20px;
}


.cultural-dropdown strong {
    display: block;

    color: var(--ns-navy);

    font-size: 14px;
}


.cultural-dropdown small {
    display: block;

    margin-top: 2px;

    color: var(--ns-muted);

    font-size: 11px;
}


/* =========================================================
   HAMBURGER
========================================================= */

.menu-toggle {
    width: 46px;
    height: 46px;

    display: none;

    padding: 9px;

    border: none;

    border-radius: 10px;

    background: transparent;

    cursor: pointer;
}


.menu-toggle span {
    width: 25px;
    height: 2px;

    display: block;

    margin:
        5px
        auto;

    border-radius: 999px;

    background: var(--ns-navy);

    transition:
        transform .25s ease,
        opacity .25s ease;
}


.menu-toggle.active
span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}


.menu-toggle.active
span:nth-child(2) {
    opacity: 0;
}


.menu-toggle.active
span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.tour-home {
    overflow: hidden;
}


.hero-slider {
    position: relative;

    width: 100%;

    height:
        min(
            790px,
            calc(100vh - 94px)
        );

    min-height: 650px;

    overflow: hidden;

    background:
        var(--ns-navy-dark);
}


.hero-slide {
    position: absolute;

    inset: 0;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.05);

    transition:
        opacity 1s ease,
        visibility 1s ease,
        transform 7s ease;
}


.hero-slide.active {
    opacity: 1;
    visibility: visible;

    transform: scale(1);
}


.hero-slide > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 39, 58, .86) 0%,
            rgba(5, 39, 58, .61) 39%,
            rgba(5, 39, 58, .23) 68%,
            rgba(5, 39, 58, .08) 100%
        ),
        linear-gradient(
            0deg,
            rgba(5, 39, 58, .40),
            transparent 55%
        );
}


.hero-slide-content {
    position: relative;

    z-index: 3;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding-bottom: 35px;

    color: #ffffff;
}


.hero-kicker {
    display: inline-flex;

    margin-bottom: 20px;

    padding:
        8px
        14px;

    border-radius: 999px;

    color: #ffffff;

    background:
        var(--ns-red);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    box-shadow:
        0 10px 28px
        rgba(215, 56, 39, .28);
}


.hero-slide-content h1 {
    max-width: 850px;

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            54px,
            7vw,
            94px
        );

    line-height: .94;

    letter-spacing: -4px;
}


.hero-slide-content h1 span {
    display: block;

    color: #61c8e7;
}


.hero-slide-content p {
    max-width: 640px;

    margin:
        27px
        0
        0;

    color:
        rgba(255, 255, 255, .88);

    font-size: 17px;

    line-height: 1.8;
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 33px;
}


.hero-btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding:
        0
        26px;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}


.hero-btn:hover {
    transform: translateY(-2px);
}


.hero-btn-primary {
    color: #ffffff;

    background:
        var(--ns-red);

    box-shadow:
        0 12px 30px
        rgba(215, 56, 39, .30);
}


.hero-btn-primary:hover {
    background:
        var(--ns-red-dark);
}


.hero-btn-outline {
    color: #ffffff;

    border:
        1px solid
        rgba(255, 255, 255, .55);

    background:
        rgba(255, 255, 255, .09);

    backdrop-filter:
        blur(10px);
}


.hero-btn-outline:hover {
    background:
        rgba(255, 255, 255, .17);
}


/* =========================================================
   HERO ARROWS
========================================================= */

.hero-arrow {
    position: absolute;

    z-index: 20;

    top: 50%;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border:
        1px solid
        rgba(255, 255, 255, .32);

    border-radius: 50%;

    color: #ffffff;

    background:
        rgba(8, 44, 62, .30);

    backdrop-filter:
        blur(10px);

    transform:
        translateY(-50%);

    cursor: pointer;

    font-size: 19px;

    transition:
        background .2s ease,
        transform .2s ease;
}


.hero-arrow:hover {
    background:
        rgba(255, 255, 255, .18);
}


.hero-prev {
    left: 28px;
}


.hero-next {
    right: 28px;
}


/* =========================================================
   HERO DOTS
========================================================= */

.hero-dots {
    position: absolute;

    z-index: 20;

    left: 50%;
    bottom: 31px;

    display: flex;
    align-items: center;

    gap: 7px;

    transform:
        translateX(-50%);
}


.hero-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, .48);

    cursor: pointer;

    transition:
        width .3s ease,
        background .3s ease;
}


.hero-dot.active {
    width: 34px;

    background:
        #ffffff;
}


.hero-scroll {
    position: absolute;

    z-index: 20;

    right: 40px;
    bottom: 30px;

    display: flex;
    align-items: center;

    gap: 9px;

    color:
        rgba(255, 255, 255, .7);

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.2px;
}


.hero-scroll > span {
    width: 25px;
    height: 1px;

    background:
        rgba(255, 255, 255, .55);
}


/* =========================================================
   SECTION COMMON
========================================================= */

.section-kicker {
    display: inline-block;

    margin-bottom: 12px;

    color:
        var(--ns-red);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

#getting-here .section-kicker {

    display:inline-block;

    margin-bottom:12px;

    padding:

        8px 18px;


    color:#ffffff;


    background:

        rgba(215,56,39,.85);


    border-radius:50px;


    font-size:10px;

    font-weight:800;


    letter-spacing:2px;


    text-transform:uppercase;


    backdrop-filter:blur(5px);

}

.section-header {
    display: block;
    text-align: center;
    margin-bottom: 70px;
}


.section-header h2 {
    max-width: 900px;
    margin: 0 auto 25px;
}


.section-header > p {

    max-width: 1200px;

    margin: 0 auto;

    font-size: 17px;

    line-height: 1.9;

}


/* KEEP EXISTING HEADING STYLE */
.section-header h2,
.center-heading h2,
.map-heading h2 {

    color: var(--ns-navy);

    font-size:
        clamp(
            38px,
            5vw,
            60px
        );

    line-height: 1.04;

    letter-spacing: -2px;
}
#getting-here .center-heading h2 {

    color:#ffffff;

    text-shadow:
        0 4px 18px rgba(0,0,0,.45);

}


/* =========================================================
   TOURISM HIGHLIGHTS
========================================================= */

.tourism-highlights {
    padding:
        115px
        0;

    background:
        #ffffff;
}


.tour-card-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px;
}


.tour-card {
    overflow: hidden;

    border:
        1px solid
        var(--ns-border);

    border-radius: 24px;

    background:
        #ffffff;

    box-shadow:
        var(--shadow-small);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.tour-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(20, 147, 193, .28);

    box-shadow:
        var(--shadow-large);
}


.tour-card-image {
    position: relative;

    height: 310px;

    overflow: hidden;
}


.tour-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s ease;
}


.tour-card:hover
.tour-card-image img {
    transform:
        scale(1.06);
}


.tour-card-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(8, 47, 64, .28),
            transparent 55%
        );
}


.tour-card-number {
    position: absolute;

    z-index: 3;

    top: 20px;
    right: 20px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background:
        var(--ns-blue);

    font-size: 11px;
    font-weight: 800;

    box-shadow:
        0 7px 20px
        rgba(0, 0, 0, .15);
}


.tour-card:nth-child(2)
.tour-card-number {
    background:
        var(--ns-teal);
}


.tour-card:nth-child(3)
.tour-card-number {
    background:
        var(--ns-red);
}


.tour-card:nth-child(4)
.tour-card-number {
    color:
        var(--ns-navy);

    background:
        var(--ns-yellow);
}


.tour-card-body {
    padding:
        30px
        31px
        34px;
}


.tour-card-category {
    display: block;

    margin-bottom: 7px;

    color:
        var(--ns-blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


.tour-card:nth-child(3)
.tour-card-category {
    color:
        var(--ns-red);
}


.tour-card-body h3 {
    margin: 0;

    color:
        var(--ns-navy);

    font-size: 29px;

    letter-spacing: -1px;
}


.tour-card-body p {
    margin:
        14px
        0
        0;

    color:
        var(--ns-text);

    font-size: 14px;

    line-height: 1.8;
}


.tour-card-body a {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 23px;

    color:
        var(--ns-red);

    font-size: 13px;
    font-weight: 800;
}


.tour-card-body a span {
    transition:
        transform .2s ease;
}


.tour-card-body a:hover span {
    transform:
        translateX(5px);
}


/* =========================================================
   GETTING HERE
========================================================= */

/* =========================
   GETTING HERE
========================= */
.getting-here {

    position:relative;

    padding:120px 0;


    background-image:

    linear-gradient(
        rgba(18,61,88,.25),
        rgba(18,61,88,.35)
    ),

    var(--getting-bg);


    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}


/* =========================
   CENTER HEADING
========================= */

.center-heading {

    max-width:900px;

    margin:
        0
        auto
        70px;

    text-align:center;

}


.center-heading h2 {

    margin:0;

    color:var(--ns-navy);

    font-size:
        clamp(
            38px,
            5vw,
            60px
        );

    line-height:1.04;

    letter-spacing:-2px;

}


.center-heading p {

    max-width:850px;

    margin:
        25px
        auto
        0;


    color:

        rgba(255,255,255,.92);


    font-size:17px;

    line-height:1.9;


    text-shadow:

        0 3px 15px

        rgba(0,0,0,.45);

}



/* =========================
   TRANSPORT GRID
========================= */

.transport-grid {

    max-width:1500px;

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:35px;

    margin:
        0
        auto;

}



/* =========================
   CARD
========================= */

.transport-card {

    position:relative;

    overflow:hidden;

    padding:

        55px

        45px;


    min-height:450px;


    border:

        1px solid

        var(--ns-border);


    border-radius:35px;


    background:#ffffff;


    box-shadow:

        var(--shadow-small);


    transition:

        transform .35s ease,

        box-shadow .35s ease;

}



.transport-card:hover {

    transform:

        translateY(-12px);


    box-shadow:

        var(--shadow-large);

}



/* =========================
   TOP COLOR
========================= */


/* SEA */

.transport-card:nth-child(1){

    border-top:

        6px solid

        var(--ns-blue);

}


/* AIR */

.transport-card:nth-child(2){

    border-top:

        6px solid

        var(--ns-teal);

}


/* LAND */

.transport-card:nth-child(3){ border-top: 6px solid var(--ns-red); }


/* =========================
   DECORATION
========================= */


.transport-card::after {

    content:"";


    position:absolute;


    width:260px;

    height:260px;


    right:-130px;

    bottom:-130px;


    border-radius:50%;


    background:

        rgba(20,147,193,.06);

}



/* =========================
   ICON
========================= */


.transport-icon {

    width:100px;

    height:100px;


    display:flex;

    align-items:center;

    justify-content:center;


    margin-bottom:38px;


    border-radius:30px;


    background:

        rgba(20,147,193,.12);


}



.transport-card:nth-child(2)
.transport-icon {

    background:

        rgba(21,153,156,.12);

}



.transport-card:nth-child(3)
.transport-icon {

    background:

        rgba(215,56,39,.12);

}




.transport-icon svg {

    width:50px;

    height:50px;


    fill:

        var(--ns-blue);

}



.transport-card:nth-child(2)
.transport-icon svg {

    fill:

        var(--ns-teal);

}



.transport-card:nth-child(3)
.transport-icon svg {

    fill:

        var(--ns-red);

}



/* =========================
   CONTENT
========================= */


.transport-body {

    position:relative;

    z-index:2;

}



.transport-body > span {

    color:

        var(--ns-red);


    font-size:11px;


    font-weight:800;


    letter-spacing:2px;


    text-transform:uppercase;

}



.transport-body h3 {


    margin:

        12px
        0
        0;


    color:

        var(--ns-navy);


    font-size:42px;


    letter-spacing:-1.5px;

}



.transport-body p {


    margin:

        22px
        0
        0;


    color:

        var(--ns-text);


    font-size:16px;


    line-height:1.9;

}



.transport-body a {


    display:inline-flex;


    align-items:center;


    gap:10px;


    margin-top:30px;


    color:

        var(--ns-blue-dark);


    font-size:14px;


    font-weight:800;

}



/* =========================
   MOBILE
========================= */

@media(max-width:900px){

    .transport-grid{

        grid-template-columns:1fr;

    }


    .transport-card{

        min-height:auto;

    }

}

/* =========================================================
   MAP
========================================================= */

.map-section {
    padding:
        115px
        0
        130px;

    background:
        #ffffff;
}


.map-heading {
    display: grid;

    grid-template-columns:
        1fr
        .75fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 50px;
}


.map-heading > p {
    margin: 0;

    color:
        var(--ns-text);

    font-size: 15px;

    line-height: 1.8;
}


.map-wrapper {
    position: relative;

    max-width: 1050px;

    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin:
        0
        auto;

    padding: 52px;

    overflow: hidden;

    border:
        1px solid
        rgba(20, 147, 193, .14);

    border-radius: 34px;

    background:
        radial-gradient(
            circle at 50% 35%,
            #ffffff,
            #eaf7fb
        );
}


.map-image-card {
    position: relative;

    z-index: 4;

    width:
        min(
            720px,
            100%
        );

    padding: 28px;

    border-radius: 25px;

    background:
        #ffffff;

    box-shadow:
        var(--shadow-large);
}


.map-image-card img {
    width: 100%;

    max-height: 510px;

    object-fit: contain;
}


.map-location-card {
    position: absolute;

    z-index: 8;

    left: 35px;
    bottom: 35px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding:
        16px
        20px;

    border-left:
        4px solid
        var(--ns-red);

    border-radius: 15px;

    background:
        rgba(255, 255, 255, .96);

    box-shadow:
        var(--shadow-small);
}


.location-icon {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background:
        var(--ns-blue);

    font-size: 8px;
}


.map-location-card strong {
    display: block;

    color:
        var(--ns-navy);

    font-size: 13px;
}


.map-location-card small {
    display: block;

    margin-top: 2px;

    color:
        var(--ns-muted);

    font-size: 10px;
}


.map-shape {
    position: absolute;

    border-radius: 50%;
}


.map-shape-one {
    width: 320px;
    height: 320px;

    right: -150px;
    top: -150px;

    background:
        rgba(20, 147, 193, .08);
}


.map-shape-two {
    width: 270px;
    height: 270px;

    left: -120px;
    bottom: -140px;

    background:
        rgba(215, 56, 39, .06);
}

/* =========================
   TRANSPORT COLLAPSE
========================= */


.transport-more {

    display:none;

}



.transport-description.show-more 
.transport-more {

    display:block;

}



.transport-read-more {

    margin-top:18px;


    padding:0;


    border:none;


    background:none;


    color:var(--ns-blue-dark);


    font-size:13px;


    font-weight:800;


    cursor:pointer;

}



.transport-read-more:hover {

    color:var(--ns-red);

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 55px 0;

    background:
        linear-gradient(
            135deg,
            #f7fbfc 0%,
            #eaf6fb 55%,
            #fdf7f2 100%
        );

    color: var(--ns-navy);

    border-top:
        1px solid
        rgba(18, 61, 88, 0.08);
}


.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


.footer-brand img {
    width: 180px;
    height: auto;
}


.footer-brand p {
    margin: 8px 0 0;

    color: var(--ns-text);

    font-size: 11px;

    letter-spacing: 1px;
}

.footer-copy p {
    margin: 0;

    color: var(--ns-text);

    font-size: 12px;
}


.footer-copy {
    text-align: right;
}


.footer-copy p {
    margin: 0;

    font-size: 12px;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(28px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}


.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .site-logo img {
        width: 185px;
    }


    .main-menu > li > a {
        padding:
            0
            10px;

        font-size: 12px;
    }


    .lgu-dropdown {
        width: 620px;
    }


    .lgu-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 900px) {

    .header-inner {
        min-height: 78px;

        flex-wrap: wrap;

        gap: 0;
    }


    .site-logo img {
        width: 170px;
        height: 90px;
    }


    .menu-toggle {
        display: block;
    }


    .main-navigation {
        display: none;

        flex-basis: 100%;

        width: 100%;

        max-height:
            calc(100vh - 78px);

        overflow-y: auto;

        padding-bottom: 18px;
    }


    .main-navigation.active {
        display: block;
    }


    .main-menu {
        display: block;

        width: 100%;
    }


    .main-menu > li {
        width: 100%;

        border-top:
            1px solid
            rgba(18, 61, 88, .08);
    }


    .main-menu > li > a {
        width: 100%;
        min-height: auto;

        justify-content: space-between;

        padding:
            16px
            4px;

        font-size: 13px;
    }


    .main-menu > li > a::after {
        display: none;
    }


    .dropdown-menu {
        position: static;

        display: none;

        width: 100%;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: none;

        margin-bottom: 13px;

        border: none;
        border-radius: 14px;

        box-shadow: none;

        background:
            var(--ns-light);

        transition: none;
    }


    .menu-item-has-children:hover
    > .dropdown-menu {
        transform: none;
    }


    .menu-item-has-children.open
    > .dropdown-menu {
        display: block;
    }


    .menu-item-has-children.open
    .menu-arrow {
        transform: rotate(180deg);
    }


    .lgu-dropdown {
        width: 100%;

        padding: 17px;

        border-top:
            3px solid
            var(--ns-blue);
    }


    .cultural-dropdown {
        width: 100%;

        padding: 9px;
    }


    .hero-slider {
        height:
            calc(100vh - 78px);

        min-height: 660px;
    }


    .hero-slide-content h1 {
        font-size:
            clamp(
                49px,
                10vw,
                70px
            );

        letter-spacing: -3px;
    }


    .section-header {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .map-heading {
        grid-template-columns: 1fr;

        gap: 20px;
    }


}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .container {
        width:
            min(
                100% - 28px,
                1200px
            );
    }


    .lgu-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .dropdown-heading {
        flex-direction: column;
        align-items: flex-start;

        gap: 9px;
    }


    /* HERO */

    .hero-slider {
        height: 660px;
        min-height: 660px;
    }


    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 39, 58, .78),
                rgba(5, 39, 58, .42)
            ),
            linear-gradient(
                0deg,
                rgba(5, 39, 58, .76),
                transparent
            );
    }


    .hero-slide-content {
        justify-content: flex-end;

        padding-bottom: 95px;
    }


    .hero-slide-content h1 {
        font-size: 46px;

        line-height: .98;

        letter-spacing: -2.5px;
    }


    .hero-slide-content p {
        font-size: 14px;

        line-height: 1.7;
    }


    .hero-actions {
        width: 100%;

        flex-direction: column;
    }


    .hero-btn {
        width: 100%;
    }


    .hero-arrow {
        width: 41px;
        height: 41px;

        top: 43%;
    }


    .hero-prev {
        left: 13px;
    }


    .hero-next {
        right: 13px;
    }


    .hero-scroll {
        display: none;
    }


    /* SECTIONS */

    .tourism-highlights,
    .getting-here,
    .map-section {
        padding:
            80px
            0;
    }


    .section-header h2,
    .center-heading h2,
    .map-heading h2 {
        font-size: 39px;

        letter-spacing: -1.5px;
    }


    /* CARDS */

    .tour-card-grid {
        grid-template-columns: 1fr;
    }


    .tour-card-image {
        height: 250px;
    }


    .tour-card-body {
        padding:
            25px
            25px
            29px;
    }


    /* TRANSPORT */

    .transport-grid {
        grid-template-columns: 1fr;
    }


    .transport-card {
        padding: 31px;
    }


    /* MAP */

    .map-wrapper {
        min-height: 490px;

        padding:
            25px
            15px
            95px;

        border-radius: 25px;
    }


    .map-image-card {
        padding: 15px;
    }


    .map-location-card {
        left: 18px;
        bottom: 20px;
    }


    /* FOOTER */

    .footer-inner {
        flex-direction: column;

        text-align: center;
    }


    .footer-copy {
        text-align: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .site-logo img {
        width: 150px;
    }


    .hero-slide-content h1 {
        font-size: 40px;
    }


    .hero-arrow {
        display: none;
    }


    .hero-dots {
        bottom: 26px;
    }


    .lgu-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .lgu-grid a {
        padding:
            9px
            8px;

        font-size: 11px;
    }


}


/* =========================
   MAP ZOOM
========================= */


.map-image-card{
    cursor:pointer;
    position:relative;
}


.map-zoom-label{

    position:absolute;
    bottom:20px;
    right:20px;

    background:#ffffff;

    padding:8px 15px;

    border-radius:20px;

    font-size:14px;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

}



.map-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.85);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:9999;

}



.map-modal.active{

    display:flex;

}



.map-modal-content{

    width:90%;

    max-width:1200px;

    position:relative;

}



.map-modal-content img{

    width:100%;

    height:auto;

    max-height:90vh;

    object-fit:contain;

}



.map-modal-close{

    position:absolute;

    right:-10px;

    top:-50px;


    background:white;

    border:none;

    width:45px;

    height:45px;

    border-radius:50%;

    font-size:30px;

    cursor:pointer;

}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;
    }

}





/* =========================================
   TOURISM NEWS
========================================= */

.tourism-news-section {
    padding: 100px 0;
    background: #f7f8f5;
}

.tourism-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 45px;
}

.tourism-news-card {
    background: #ffffff;
    overflow: hidden;
    border-radius: 4px;
    transition: transform .3s ease,
                box-shadow .3s ease;
}

.tourism-news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.10);
}

.tourism-news-image {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tourism-news-image img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .4s ease;
}
.tourism-news-card:hover
.tourism-news-image img {
    transform: scale(1.05);
}

.tourism-news-body {
    padding: 28px;
}

.tourism-news-date {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #777;
}

.tourism-news-body h3 {
    margin: 0 0 15px;
    font-size: 22px;
    line-height: 1.35;
}

.tourism-news-body h3 a {
    color: inherit;
    text-decoration: none;
}

.tourism-news-excerpt {
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.tourism-news-read-more {
    text-decoration: none;
    font-weight: 600;
}

.view-all-news {
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 900px) {

    .tourism-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .tourism-news-grid {
        grid-template-columns: 1fr;
    }

}




/* =========================================
   SINGLE TOURISM NEWS
========================================= */

.tourism-single-news {
    background:
        linear-gradient(
            180deg,
            #f4f8f7 0%,
            #ffffff 360px
        );
    min-height: 100vh;
}


/* =========================================
   FEATURED IMAGE
========================================= */

.single-news-hero {
    position: relative;
    width: min(1400px, calc(100% - 60px));
    height: 600px;
    margin: 45px auto 0;
    overflow: hidden;

    border-radius: 24px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12);
}


.single-news-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(8, 38, 46, 0.28),
            rgba(8, 38, 46, 0.02) 60%
        );

    pointer-events: none;
}


.single-news-hero img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}


/* =========================================
   SINGLE NEWS CONTENT CONTAINER
========================================= */

.single-news-container {
    position: relative;

    max-width: 920px;

    margin: -70px auto 0;

    padding:
        55px
        65px
        90px;

    background: #ffffff;

    border-radius: 24px;

    box-shadow:
        0 20px 55px rgba(18, 61, 88, 0.10);

    z-index: 5;
}


/* =========================================
   BACK BUTTON
========================================= */

.single-news-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 35px;

    padding: 10px 17px;

    border: 1px solid #dce7e4;
    border-radius: 50px;

    background: #f5faf8;

    color: #285a53;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}


.single-news-back:hover {
    background: #285a53;
    color: #ffffff;

    transform: translateX(-3px);
}


/* =========================================
   DATE
========================================= */

.single-news-date {
    display: inline-flex;

    margin-bottom: 18px;

    padding: 7px 12px;

    background: #eef6f3;

    border-radius: 50px;

    color: #41756c;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.4px;
}


/* =========================================
   NEWS TITLE
========================================= */

.single-news-container h1 {
    max-width: 850px;

    margin:
        0
        0
        28px;

    color: #173f46;

    font-size: clamp(36px, 5vw, 62px);
    font-weight: 700;

    line-height: 1.08;
    letter-spacing: -1.5px;
}


/* DECORATIVE LINE */

.single-news-container h1::after {
    content: "";

    display: block;

    width: 75px;
    height: 4px;

    margin-top: 28px;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            #3d8174,
            #d9b95b
        );
}


/* =========================================
   ARTICLE CONTENT
========================================= */

.single-news-content {
    margin-top: 35px;

    color: #3d4c4f;

    font-size: 18px;
    line-height: 1.9;
}


.single-news-content p {
    margin:
        0
        0
        28px;
}


.single-news-content h2 {
    margin:
        45px
        0
        18px;

    color: #173f46;

    font-size: 30px;
    line-height: 1.25;
}


.single-news-content h3 {
    margin:
        35px
        0
        15px;

    color: #285a53;

    font-size: 23px;
}


.single-news-content a {
    color: #29796b;

    font-weight: 600;

    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}


.single-news-content blockquote {
    margin:
        40px
        0;

    padding:
        25px
        30px;

    border-left: 5px solid #d9b95b;

    background: #f5f9f7;

    border-radius:
        0
        14px
        14px
        0;

    color: #285a53;

    font-size: 20px;
    font-style: italic;
}


/* ARTICLE IMAGES */

.single-news-content img {
    width: 100%;
    height: auto;

    margin:
        30px
        0;

    border-radius: 16px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.10);
}


/* =========================================
   NEWS ARCHIVE
========================================= */

.tourism-news-page {
    background: #f7faf9;

    min-height: 100vh;
}


/* =========================================
   ARCHIVE PAGE HEADER
========================================= */

.news-page-header {
    position: relative;

    padding:
        130px
        0
        85px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #173f46,
            #285a53
        );

    color: #ffffff;
}


.news-page-header::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -130px;
    top: -170px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.05);
}


.news-page-header .section-kicker {
    color: #f1d885;

    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 2px;

    font-size: 13px;
}


.news-page-header h1 {
    position: relative;

    max-width: 750px;

    margin:
        12px
        0
        18px;

    font-size: clamp(44px, 6vw, 72px);

    line-height: 1;

    letter-spacing: -2px;
}


.news-page-header p {
    max-width: 680px;

    margin: 0;

    color: rgba(255,255,255,.82);

    font-size: 18px;
    line-height: 1.7;
}


/* =========================================
   NEWS ARCHIVE CONTENT
========================================= */

.news-page-content {
    padding:
        80px
        0
        120px;
}


/* =========================================
   NEWS GRID
========================================= */

.news-page-content .tourism-news-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 30px;
}


/* =========================================
   NEWS CARD
========================================= */

.news-page-content .tourism-news-card {
    position: relative;

    overflow: hidden;

    background: #ffffff;

    border:
        1px
        solid
        rgba(23, 63, 70, 0.08);

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(18, 61, 88, 0.07);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.news-page-content .tourism-news-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 22px 50px rgba(18, 61, 88, 0.14);
}


/* NEWS CARD IMAGE */

.news-page-content .tourism-news-image {
    display: block;

    height: 240px;

    overflow: hidden;

    background: #e9efed;
}


.news-page-content .tourism-news-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;
}


.news-page-content
.tourism-news-card:hover
.tourism-news-image img {
    transform: scale(1.06);
}


/* NEWS CARD BODY */

.news-page-content .tourism-news-body {
    padding:
        26px
        26px
        30px;
}


/* DATE */

.news-page-content .tourism-news-date {
    display: inline-block;

    margin-bottom: 12px;

    color: #568178;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;
}


/* TITLE */

.news-page-content .tourism-news-body h2 {
    margin:
        0
        0
        14px;

    font-size: 23px;
    line-height: 1.3;
}


.news-page-content .tourism-news-body h2 a {
    color: #173f46;

    text-decoration: none;

    transition: color .25s ease;
}


.news-page-content
.tourism-news-body h2 a:hover {
    color: #347568;
}


/* EXCERPT */

.news-page-content .tourism-news-excerpt {
    margin-bottom: 22px;

    color: #687679;

    font-size: 15px;
    line-height: 1.7;
}


/* READ MORE */

.news-page-content .tourism-news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #285a53;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}


.news-page-content
.tourism-news-read-more span {
    transition: transform .25s ease;
}


.news-page-content
.tourism-news-read-more:hover span {
    transform: translateX(5px);
}


/* =========================================
   PAGINATION
========================================= */

.tourism-news-pagination {
    margin-top: 65px;

    text-align: center;
}


.tourism-news-pagination .nav-links {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;
    align-items: center;

    gap: 8px;
}


.tourism-news-pagination .page-numbers {
    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 44px;
    height: 44px;

    padding:
        0
        14px;

    background: #ffffff;

    border:
        1px
        solid
        #dce8e5;

    border-radius: 50px;

    color: #285a53;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        all .25s ease;
}


.tourism-news-pagination
.page-numbers:hover {
    background: #285a53;

    border-color: #285a53;

    color: #ffffff;
}


.tourism-news-pagination
.page-numbers.current {
    background: #285a53;

    border-color: #285a53;

    color: #ffffff;
}


/* =========================================
   EMPTY NEWS
========================================= */

.no-tourism-news {
    padding: 80px 25px;

    background: #ffffff;

    border-radius: 20px;

    text-align: center;

    box-shadow:
        0 12px 35px rgba(0,0,0,.05);
}


.no-tourism-news h2 {
    margin-bottom: 10px;

    color: #173f46;
}


.no-tourism-news p {
    color: #6d7b7d;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .news-page-content
    .tourism-news-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .single-news-container {
        max-width:
            calc(100% - 70px);

        padding:
            50px
            50px
            80px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .single-news-hero {
        width:
            calc(100% - 30px);

        height: 370px;

        margin-top: 20px;

        border-radius: 18px;
    }


    .single-news-hero img {
        height: 100%;
    }


    .single-news-container {
        max-width:
            calc(100% - 30px);

        margin-top: -35px;

        padding:
            35px
            25px
            65px;

        border-radius: 18px;
    }


    .single-news-container h1 {
        font-size: 36px;

        letter-spacing: -1px;
    }


    .single-news-content {
        font-size: 16px;
        line-height: 1.8;
    }


    .news-page-header {
        padding:
            100px
            0
            65px;
    }


    .news-page-content {
        padding:
            55px
            0
            80px;
    }


    .news-page-content
    .tourism-news-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    .news-page-content
    .tourism-news-image {
        height: 230px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .single-news-hero {
        height: 290px;
    }


    .single-news-container h1 {
        font-size: 31px;
    }


    .single-news-container {
        padding:
            30px
            20px
            55px;
    }


    .news-page-header h1 {
        font-size: 42px;
    }

}


/* =========================================================
   START: FACEBOOK NEWS LINK
========================================================= */

.single-news-facebook {
    margin-top: 50px;
    padding-top: 32px;

    border-top:
        1px solid #e3ece9;
}


.single-news-source-label {
    display: block;

    margin-bottom: 12px;

    color: #73817e;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.3px;
}


.facebook-news-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding:
        13px
        21px;

    background: #1877f2;

    border-radius: 50px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 24px
        rgba(24,119,242,.18);

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.facebook-news-button:hover {
    background: #1266d3;

    color: #ffffff;

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 30px
        rgba(24,119,242,.26);
}


.facebook-news-button span {
    transition:
        transform .25s ease;
}


.facebook-news-button:hover span {
    transform:
        translateX(4px);
}


/* MOBILE */

@media (max-width: 600px) {

    .facebook-news-button {
        width: 100%;

        justify-content: center;

        text-align: center;
    }

}

/* =========================================================
   END: FACEBOOK NEWS LINK
========================================================= */




/* =========================================
   FEATURED ARTICLES
========================================= */

.featured-articles-section {
    position: relative;
    overflow: hidden;

    padding: 95px 0 105px;

    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(95, 143, 130, .16),
            transparent 34%
        ),
        radial-gradient(
            circle at 88% 80%,
            rgba(47, 108, 98, .12),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #f5faf8 0%,
            #eef6f3 50%,
            #f8fbfa 100%
        );
}


/* DECORATIVE BACKGROUND SHAPES */

.featured-articles-section::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    top: -150px;
    right: -100px;

    border-radius: 50%;

    background:
        rgba(95, 143, 130, .10);

    filter: blur(10px);

    pointer-events: none;
}


.featured-articles-section::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -130px;
    left: -100px;

    border-radius: 50%;

    background:
        rgba(33, 76, 69, .08);

    filter: blur(12px);

    pointer-events: none;
}


/* KEEP CONTENT ABOVE BACKGROUND */

.featured-articles-section .container {
    position: relative;
    z-index: 2;
}


/* SECTION HEADER */

.featured-articles-section .section-header {
    margin-bottom: 42px;
}


/* GRID */

.featured-articles-section .sfa-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 26px;
}


/* CARD */

.featured-articles-section .sfa-card {
    overflow: hidden;

    background:
        rgba(255, 255, 255, .96);

    border:
        1px solid rgba(201, 220, 214, .90);

    border-radius: 18px;

    box-shadow:
        0 12px 35px
        rgba(21, 63, 55, .09);

    backdrop-filter:
        blur(8px);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* CARD HOVER */

.featured-articles-section .sfa-card:hover {
    transform:
        translateY(-7px);

    border-color:
        #afcdc4;

    box-shadow:
        0 20px 45px
        rgba(21, 63, 55, .15);
}


/* IMAGE */

.featured-articles-section .sfa-card-image {
    position: relative;

    width: 100%;
    height: 240px;

    overflow: hidden;

    background:
        #edf3f1;
}


.featured-articles-section
.sfa-card-image a {
    display: block;

    width: 100%;
    height: 100%;
}


.featured-articles-section
.sfa-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform .4s ease;
}


/* IMAGE HOVER */

.featured-articles-section
.sfa-card:hover
.sfa-card-image img {
    transform:
        scale(1.05);
}


/* OPTIONAL IMAGE OVERLAY */

.featured-articles-section
.sfa-card-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(20, 52, 46, .12),
            transparent 45%
        );

    pointer-events: none;
}


/* CARD BODY */

.featured-articles-section
.sfa-card-body {
    padding:
        25px 25px 28px;
}


/* TITLE */

.featured-articles-section
.sfa-card-body h3 {
    margin:
        0 0 12px;

    font-size:
        21px;

    line-height:
        1.35;

    color:
        #214c45;
}


.featured-articles-section
.sfa-card-body h3 a {
    color:
        inherit;

    text-decoration:
        none;

    transition:
        color .25s ease;
}


.featured-articles-section
.sfa-card-body h3 a:hover {
    color:
        #2f6c62;
}


/* DESCRIPTION */

.featured-articles-section
.sfa-card-body p {
    margin:
        0 0 18px;

    color:
        #687b77;

    font-size:
        14px;

    line-height:
        1.7;
}


/* READ MORE */

.featured-articles-section
.sfa-read-more {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        6px;

    color:
        #2f6c62;

    font-size:
        13px;

    font-weight:
        700;

    text-decoration:
        none;

    transition:
        color .25s ease,
        transform .25s ease;
}


.featured-articles-section
.sfa-read-more:hover {
    color:
        #173d38;

    transform:
        translateX(3px);
}


/* EMPTY STATE */

.featured-articles-section
.sfa-empty {
    margin:
        0;

    padding:
        25px;

    background:
        rgba(255,255,255,.75);

    border:
        1px solid #dfeae6;

    border-radius:
        14px;

    color:
        #6a7e78;

    text-align:
        center;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .featured-articles-section {
        padding:
            80px 0 90px;
    }


    .featured-articles-section
    .sfa-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .featured-articles-section
    .sfa-card-image {

        height:
            230px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .featured-articles-section {
        padding:
            65px 0 75px;
    }


    .featured-articles-section::before {
        width:
            230px;

        height:
            230px;

        top:
            -100px;

        right:
            -100px;
    }


    .featured-articles-section::after {
        width:
            220px;

        height:
            220px;

        bottom:
            -100px;

        left:
            -100px;
    }


    .featured-articles-section
    .section-header {

        margin-bottom:
            30px;
    }


    .featured-articles-section
    .sfa-grid {

        grid-template-columns:
            1fr;

        gap:
            20px;
    }


    .featured-articles-section
    .sfa-card-image {

        height:
            220px;
    }


    .featured-articles-section
    .sfa-card-body {

        padding:
            22px 20px 24px;
    }


    .featured-articles-section
    .sfa-card-body h3 {

        font-size:
            19px;
    }


    .featured-articles-section
    .sfa-card-body p {

        font-size:
            14px;

        line-height:
            1.65;
    }

}