p {
  -webkit-text-size-adjust: 75%;
  text-size-adjust: 75%;
}
ul li {-webkit-text-size-adjust: 75%;
  text-size-adjust: 75%;}

.WaGadgetUpcomingEvents ul li {
		
			font-size: 16px;
            color: #34495E}

.WaGadgetBlog .boxBodyInfoOuterContainer h5 .postedByLink{
display:none;
}
.WaGadgetBlog .boxBodyInfoOuterContainer h5 .postedByLabel{
display:none;
}
            
/* ==========================================================
   IWP HOMEPAGE
   Hero banner, section header, and upcoming events
   ========================================================== */


/* ==========================================================
   HERO BANNER
   ========================================================== */

.iwp-hero {
    position: relative;
    overflow: hidden;

    width: 100%;
    height: 520px;

    margin-bottom: 32px;

    border-radius: 8px;
}

.iwp-hero-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.iwp-hero-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    background:
        linear-gradient(
            90deg,
            rgba(9, 33, 71, 0.55) 0%,
            rgba(9, 33, 71, 0.38) 30%,
            rgba(9, 33, 71, 0.12) 55%,
            rgba(9, 33, 71, 0) 75%
        );
}

.iwp-hero-content {
    max-width: 520px;
    padding: 0 0 45px 60px;
}

.iwp-hero h1 {
    margin: 0 0 20px;

    color: #ffffff;
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.1;
}

.iwp-hero p {
    margin: 0 0 30px;

    color: rgba(255, 255, 255, 0.92);
    font-size: 1.4rem;
    line-height: 1.4;
}

.iwp-hero-buttons {
    display: flex;
    gap: 18px;
}

.iwp-btn-primary,
.iwp-btn-secondary {
    display: inline-block;

    padding: 15px 28px;

    border-radius: 6px;

    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.iwp-btn-primary {
    background: #0b4ea2;
    color: #ffffff;
}

.iwp-btn-primary:hover {
    background: #083b79;
    color: #ffffff;
    text-decoration: none;
}

.iwp-btn-secondary {
    background: #ffffff;
    color: #143f72;
}

.iwp-btn-secondary:hover {
    background: #ececec;
    color: #143f72;
    text-decoration: none;
}


/* ==========================================================
   SECTION HEADER
   Custom HTML gadget:
   Coming Up at IWP / View All Events
   ========================================================== */

.iwp-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    margin: 0 0 16px;
}

.iwp-section-header h2 {
    margin: 0;

    color: #174875;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.iwp-section-header a {
    flex-shrink: 0;

    color: #1769a6;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
}

.iwp-section-header a:hover {
    color: #0b4ea2;
    text-decoration: underline;
}


/* ==========================================================
   UPCOMING EVENTS
   ========================================================== */

.WaGadgetUpcomingEvents ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.WaGadgetUpcomingEvents li {
    margin: 0;
    padding: 0;

    border-bottom: 1px solid #e8edf3;
}

.WaGadgetUpcomingEvents li:last-child {
    border-bottom: none;
}

.WaGadgetUpcomingEvents li:hover {
    background: #fafcff;
}


/* Three-column event row */

.iwp-event-row {
    display: grid;
    grid-template-columns:
        minmax(110px, 130px)
        minmax(260px, 1fr)
        minmax(180px, 1.15fr);

    column-gap: 24px;
    align-items: start;

    padding: 15px 0;
}


/* Date and time */

.iwp-event-date {
    min-width: 0;

    color: #4f5964;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    white-space: normal;
}


/* Event title */

.iwp-event-title {
    min-width: 0;

    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.iwp-event-title a {
    color: #174875;
    text-decoration: none;
}

.iwp-event-title a:hover {
    color: #1261a0;
    text-decoration: underline;
}


/* Location */

.iwp-event-location {
    min-width: 0;

    color: #7a8087;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;

    overflow-wrap: anywhere;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media screen and (max-width: 900px) {

    .iwp-hero {
        height: 430px;
    }

    .iwp-hero-content {
        padding: 0 40px 40px;
    }

    .iwp-hero h1 {
        font-size: 2.2rem;
    }

    .iwp-hero p {
        font-size: 1.1rem;
    }

    .iwp-event-row {
        grid-template-columns:
            110px
            minmax(0, 1fr);

        column-gap: 18px;
    }

    .iwp-event-location {
        grid-column: 2;

        margin-top: 4px;
    }
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media screen and (max-width: 560px) {

    .iwp-hero {
        height: 460px;
        margin-bottom: 26px;
    }

    .iwp-hero-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(9, 33, 71, 0.72) 0%,
                rgba(9, 33, 71, 0.42) 55%,
                rgba(9, 33, 71, 0.08) 100%
            );
    }

    .iwp-hero-content {
        max-width: none;
        padding: 30px 24px;
    }

    .iwp-hero h1 {
        margin-bottom: 14px;
        font-size: 2rem;
    }

    .iwp-hero p {
        margin-bottom: 22px;
        font-size: 1rem;
    }

    .iwp-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .iwp-btn-primary,
    .iwp-btn-secondary {
        padding: 13px 22px;
    }

    .iwp-section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;

        margin-bottom: 12px;
    }

    .iwp-section-header h2 {
        font-size: 23px;
    }

    .iwp-event-row {
        display: block;
        padding: 15px 0;
    }

    .iwp-event-date {
        margin-bottom: 4px;
        font-weight: 600;
    }

    .iwp-event-title {
        margin-bottom: 4px;
        font-size: 15px;
    }

    .iwp-event-location {
        margin-top: 0;
    }
}
/* ==========================================================
   AZULEJO STORY SECTION
   ========================================================== */

.iwp-tile-story {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(380px, 0.92fr);

    min-height: 330px;
    margin-top: 28px;

    overflow: hidden;

    background: #f7f2ec;
    border-radius: 8px;
}


/* Tile image */

.iwp-tile-story-image {
    position: relative;
    min-height: 330px;
    overflow: hidden;
}

.iwp-tile-story-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/*
Softly blends the image into the text panel instead of creating
a hard vertical edge.
*/

.iwp-tile-story-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(247, 242, 236, 0) 68%,
            rgba(247, 242, 236, 0.45) 84%,
            #f7f2ec 100%
        );

    pointer-events: none;
}


/* Text area */

.iwp-tile-story-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 30px;
    align-items: center;

    padding: 42px 42px 38px 34px;
}

.iwp-tile-story-copy {
    min-width: 0;
}

.iwp-tile-story-copy h2 {
    margin: 0 0 18px;

    color: #123f76;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 35px;
    font-weight: 400;
    line-height: 1.08;
}

.iwp-tile-story-copy p {
    max-width: 510px;
    margin: 0;

    color: #173d68;
    font-size: 16px;
    line-height: 1.48;
}


/* Emblem and button */

.iwp-tile-story-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.iwp-tile-medallion {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 104px;
    height: 104px;

    padding: 13px;

    background: #ffffff;
    border: 1px solid rgba(23, 72, 117, 0.12);
    border-radius: 50%;

    box-shadow:
        0 4px 10px rgba(9, 33, 71, 0.12);
}

.iwp-tile-medallion img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.iwp-outline-button {
    display: inline-block;

    padding: 13px 18px;

    color: #0b4ea2;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid #0b4ea2;
    border-radius: 5px;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;

    white-space: nowrap;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.iwp-outline-button:hover {
    color: #ffffff;
    background: #0b4ea2;
    text-decoration: none;
}


/* ==========================================================
   AZULEJO SECTION — TABLET
   ========================================================== */

@media screen and (max-width: 900px) {

    .iwp-tile-story {
        grid-template-columns: 1fr;
    }

    .iwp-tile-story-image {
        min-height: 260px;
    }

    .iwp-tile-story-image::after {
        background:
            linear-gradient(
                180deg,
                rgba(247, 242, 236, 0) 68%,
                #f7f2ec 100%
            );
    }

    .iwp-tile-story-content {
        grid-template-columns: minmax(0, 1fr) 135px;
        padding: 10px 34px 36px;
    }

    .iwp-tile-story-copy h2 {
        font-size: 32px;
    }
}


/* ==========================================================
   AZULEJO SECTION — MOBILE
   ========================================================== */

@media screen and (max-width: 560px) {

    .iwp-tile-story {
        margin-top: 22px;
        border-radius: 6px;
    }

    .iwp-tile-story-image {
        min-height: 210px;
    }

    .iwp-tile-story-content {
        display: block;
        padding: 6px 24px 30px;
    }

    .iwp-tile-story-copy h2 {
        margin-bottom: 15px;
        font-size: 29px;
    }

    .iwp-tile-story-copy p {
        font-size: 15px;
    }

    .iwp-tile-story-actions {
        align-items: flex-start;
        gap: 18px;

        margin-top: 24px;
    }

    .iwp-tile-medallion {
        width: 82px;
        height: 82px;
        padding: 10px;
    }
}
/* ==========================================================
   EXPLORE INTEREST GROUPS — HOMEPAGE
   ========================================================== */

.iwp-groups-section {
    margin-top: 28px;
    padding: 28px 34px 32px;

    background: #ffffff;
    border-radius: 8px;
}


/* Section heading */

.iwp-groups-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    margin-bottom: 26px;
}

.iwp-groups-header h2 {
    margin: 0;

    color: #174875;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.iwp-groups-header > a {
    flex-shrink: 0;

    color: #0b4ea2;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
}

.iwp-groups-header > a:hover {
    color: #083b79;
    text-decoration: underline;
}


/* Group layout */

.iwp-groups-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));

    border-top: 1px solid #e1e7ef;
    border-bottom: 1px solid #e1e7ef;
}


/* Individual group links */

.iwp-group-item {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;

    min-width: 0;
    min-height: 138px;
    padding: 18px 12px;

    color: #174875;
    background: transparent;

    text-align: center;
    text-decoration: none;

    border-right: 1px solid #e1e7ef;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.iwp-group-item:last-child {
    border-right: none;
}

.iwp-group-item:hover {
    color: #0b4ea2;
    background: #f7f9fc;
    text-decoration: none;
    transform: translateY(-2px);
}


/* Icon container */

.iwp-group-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    color: currentColor;
}


/* Inline SVG icon styling */

.iwp-group-icon svg {
    display: block;

    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;

    overflow: visible;
}


/*
Some icons use filled circles for small details,
such as dots on dice.
*/

.iwp-group-icon svg circle {
    vector-effect: non-scaling-stroke;
}


/* Group name */

.iwp-group-label {
    display: block;

    max-width: 130px;

    color: currentColor;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}


/* Keyboard accessibility */

.iwp-group-item:focus-visible,
.iwp-groups-header > a:focus-visible {
    outline: 3px solid rgba(11, 78, 162, 0.3);
    outline-offset: 4px;
}


/* ==========================================================
   EXPLORE GROUPS — TABLET
   ========================================================== */

@media screen and (max-width: 900px) {

    .iwp-groups-section {
        padding: 26px 28px 30px;
    }

    .iwp-groups-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        border-bottom: none;
    }

    .iwp-group-item {
        min-height: 128px;

        border-bottom: 1px solid #e1e7ef;
    }

    .iwp-group-item:nth-child(4n) {
        border-right: none;
    }

    .iwp-group-item:last-child {
        border-right: 1px solid #e1e7ef;
    }
}


/* ==========================================================
   EXPLORE GROUPS — MOBILE
   ========================================================== */

@media screen and (max-width: 560px) {

    .iwp-groups-section {
        margin-top: 22px;
        padding: 24px 20px 28px;

        border-radius: 6px;
    }

    .iwp-groups-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;

        margin-bottom: 20px;
    }

    .iwp-groups-header h2 {
        font-size: 23px;
    }

    .iwp-groups-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .iwp-group-item {
        min-height: 122px;
        padding: 16px 10px;
    }

    .iwp-group-item:nth-child(4n) {
        border-right: 1px solid #e1e7ef;
    }

    .iwp-group-item:nth-child(2n) {
        border-right: none;
    }

    .iwp-group-icon {
        width: 52px;
        height: 52px;
    }

    .iwp-group-label {
        max-width: 120px;
        font-size: 12.5px;
    }
}
/* ==========================================================
   IWP INTEREST GROUPS PAGE
   Page URL: /Interest-Groups
   ========================================================== */

.iwp-interest-page {
    width: 100%;
    margin: 0 auto;

    color: #173d68;
}

.iwp-interest-page *,
.iwp-interest-page *::before,
.iwp-interest-page *::after {
    box-sizing: border-box;
}


/* ==========================================================
   PAGE INTRODUCTION
   ========================================================== */

.iwp-interest-intro {
    max-width: 820px;
    margin: 0 auto;
    padding: 42px 24px 30px;

    text-align: center;
}

.iwp-interest-eyebrow {
    margin: 0 0 10px;

    color: #0b4ea2;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.iwp-interest-intro h1 {
    margin: 0 0 20px;

    color: #174875;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
}

.iwp-interest-intro p {
    max-width: 720px;
    margin: 0 auto 12px;

    color: #365572;
    font-size: 16px;
    line-height: 1.6;
}

.iwp-interest-intro .iwp-interest-lead {
    color: #173d68;
    font-size: 18px;
}


/* ==========================================================
   CATEGORY NAVIGATION
   ========================================================== */

.iwp-interest-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;

    margin: 0 0 38px;
    padding: 0 20px;
}

.iwp-interest-nav a {
    display: inline-block;

    padding: 9px 15px;

    color: #174875;
    background: #f4f7fb;
    border: 1px solid #d9e2ed;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.iwp-interest-nav a:hover {
    color: #ffffff;
    background: #0b4ea2;
    border-color: #0b4ea2;
    text-decoration: none;
}

.iwp-interest-nav a:focus-visible {
    outline: 3px solid rgba(11, 78, 162, 0.28);
    outline-offset: 3px;
}


/* ==========================================================
   INTEREST GROUP SECTIONS
   ========================================================== */

.iwp-interest-section {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, 0.95fr);

    align-items: stretch;

    min-height: 360px;
    margin: 0 0 28px;

    overflow: hidden;

    background: #f8fafc;
    border: 1px solid #e6ebf1;
    border-radius: 8px;

    scroll-margin-top: 30px;
}


/* Alternate image and text positions */

.iwp-interest-section-reverse .iwp-interest-image {
    order: 2;
}

.iwp-interest-section-reverse .iwp-interest-copy {
    order: 1;
}


/* ==========================================================
   SECTION IMAGES
   ========================================================== */

.iwp-interest-image {
    position: relative;

    min-width: 0;
    min-height: 360px;

    overflow: hidden;

    background: #e8edf3;
}

.iwp-interest-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.iwp-interest-section:hover .iwp-interest-image img {
    transform: scale(1.025);
}


/* ==========================================================
   SECTION COPY
   ========================================================== */

.iwp-interest-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;
    padding: 42px 46px;
}

.iwp-interest-number {
    margin: 0 0 10px;

    color: #7895b2;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.14em;
}

.iwp-interest-copy h2 {
    margin: 0 0 18px;

    color: #174875;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
}

.iwp-interest-copy p {
    margin: 0 0 14px;

    color: #365572;
    font-size: 16px;
    line-height: 1.58;
}

.iwp-interest-copy p:first-of-type:not(.iwp-interest-number) {
    color: #173d68;
}

.iwp-interest-event-link {
    align-self: flex-start;

    margin-top: 7px;

    color: #0b4ea2;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
}

.iwp-interest-event-link:hover {
    color: #083b79;
    text-decoration: underline;
}

.iwp-interest-event-link:focus-visible {
    outline: 3px solid rgba(11, 78, 162, 0.28);
    outline-offset: 4px;
}


/* ==========================================================
   BOTTOM CALL TO ACTION
   ========================================================== */

.iwp-interest-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;

    margin: 38px 0 0;
    padding: 32px 36px;

    color: #ffffff;
    background:
        linear-gradient(
            90deg,
            #0b3f82 0%,
            #0b4ea2 100%
        );

    border-radius: 8px;
}

.iwp-interest-cta-copy {
    min-width: 0;
}

.iwp-interest-cta h2 {
    margin: 0 0 8px;

    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.iwp-interest-cta p {
    margin: 0;

    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.5;
}

.iwp-interest-cta-buttons {
    display: flex;
    flex-shrink: 0;
    gap: 12px;
}

.iwp-interest-button {
    display: inline-block;

    padding: 13px 20px;

    border: 1px solid transparent;
    border-radius: 5px;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.iwp-interest-button-primary {
    color: #174875;
    background: #ffffff;
}

.iwp-interest-button-primary:hover {
    color: #174875;
    background: #edf2f7;
    text-decoration: none;
}

.iwp-interest-button-secondary {
    color: #ffffff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.75);
}

.iwp-interest-button-secondary:hover {
    color: #174875;
    background: #ffffff;
    border-color: #ffffff;
    text-decoration: none;
}

.iwp-interest-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.55);
    outline-offset: 4px;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media screen and (max-width: 900px) {

    .iwp-interest-intro {
        padding-top: 34px;
    }

    .iwp-interest-intro h1 {
        font-size: 36px;
    }

    .iwp-interest-section {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .iwp-interest-section-reverse .iwp-interest-image,
    .iwp-interest-section-reverse .iwp-interest-copy {
        order: initial;
    }

    .iwp-interest-image {
        min-height: 290px;
    }

    .iwp-interest-copy {
        padding: 34px;
    }

    .iwp-interest-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media screen and (max-width: 560px) {

    .iwp-interest-intro {
        padding: 28px 18px 24px;
    }

    .iwp-interest-eyebrow {
        font-size: 12px;
    }

    .iwp-interest-intro h1 {
        margin-bottom: 16px;
        font-size: 31px;
    }

    .iwp-interest-intro p,
    .iwp-interest-intro .iwp-interest-lead {
        font-size: 15px;
    }

    .iwp-interest-nav {
        justify-content: flex-start;
        gap: 8px;

        margin-bottom: 28px;
        padding: 0;
    }

    .iwp-interest-nav a {
        padding: 8px 12px;
        font-size: 12px;
    }

    .iwp-interest-section {
        margin-bottom: 20px;
        border-radius: 6px;
    }

    .iwp-interest-image {
        min-height: 220px;
    }

    .iwp-interest-copy {
        padding: 27px 22px 30px;
    }

    .iwp-interest-number {
        margin-bottom: 8px;
        font-size: 12px;
    }

    .iwp-interest-copy h2 {
        margin-bottom: 15px;
        font-size: 27px;
    }

    .iwp-interest-copy p {
        font-size: 15px;
    }

    .iwp-interest-cta {
        padding: 27px 22px;
        border-radius: 6px;
    }

    .iwp-interest-cta h2 {
        font-size: 24px;
    }

    .iwp-interest-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .iwp-interest-button {
        width: 100%;
    }
}

/* ==========================================================
   COMMUNITY HIGHLIGHTS — HOMEPAGE
   ========================================================== */

.iwp-highlights-section {
    margin-top: 30px;
    padding: 28px 34px 34px;

    background: #f7f9fc;
    border-radius: 8px;
}


/* Heading */

.iwp-highlights-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    margin-bottom: 24px;
}

.iwp-highlights-header h2 {
    margin: 0;

    color: #174875;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.iwp-highlights-header > a {
    flex-shrink: 0;

    color: #0b4ea2;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.iwp-highlights-header > a:hover {
    color: #083b79;
    text-decoration: underline;
}


/* Card grid */

.iwp-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}


/* Individual card */

.iwp-highlight-card {
    display: flex;
    flex-direction: column;
    min-width: 0;

    overflow: hidden;

    background: #ffffff;
    border: 1px solid #e1e7ef;
    border-radius: 8px;

    box-shadow: 0 4px 14px rgba(9, 33, 71, 0.07);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.iwp-highlight-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(9, 33, 71, 0.11);
}


/* Image */

.iwp-highlight-image {
    display: block;

    height: 190px;

    overflow: hidden;
}

.iwp-highlight-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.iwp-highlight-card:hover .iwp-highlight-image img {
    transform: scale(1.035);
}


/* Card content */

.iwp-highlight-content {
    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 20px 20px 22px;
}

.iwp-highlight-category {
    margin: 0 0 9px;

    color: #0b4ea2;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.iwp-highlight-content h3 {
    margin: 0 0 12px;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.iwp-highlight-content h3 a {
    color: #174875;
    text-decoration: none;
}

.iwp-highlight-content h3 a:hover {
    color: #0b4ea2;
    text-decoration: none;
}

.iwp-highlight-summary {
    margin: 0 0 18px;

    color: #52677b;
    font-size: 14px;
    line-height: 1.5;
}

.iwp-highlight-link {
    margin-top: auto;

    color: #0b4ea2;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.iwp-highlight-link:hover {
    color: #083b79;
    text-decoration: underline;
}


/* Tablet */

@media screen and (max-width: 900px) {

    .iwp-highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .iwp-highlight-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        width: 100%;
    }
}


/* Mobile */

@media screen and (max-width: 560px) {

    .iwp-highlights-section {
        margin-top: 22px;
        padding: 24px 20px 28px;

        border-radius: 6px;
    }

    .iwp-highlights-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;

        margin-bottom: 20px;
    }

    .iwp-highlights-header h2 {
        font-size: 23px;
    }

    .iwp-highlights-grid {
        grid-template-columns: 1fr;
    }

    .iwp-highlight-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .iwp-highlight-image {
        height: 210px;
    }
}
/* ==========================================================
   JOIN CTA ABOVE FOOTER
   ========================================================== */

.iwp-footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;

    margin-top: 34px;
    padding: 30px 36px;

    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            #0b3f82 0%,
            #0b4ea2 100%
        );

    border-radius: 8px 8px 0 0;
}

.iwp-footer-cta-copy {
    min-width: 0;
}

.iwp-footer-cta h2 {
    margin: 0 0 7px;

    color: #ffffff;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
}

.iwp-footer-cta p {
    margin: 0;

    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.5;
}

.iwp-footer-cta-button {
    display: inline-block;
    flex-shrink: 0;

    min-width: 170px;
    padding: 14px 22px;

    color: #174875;
    background: #ffffff;
    border-radius: 5px;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.iwp-footer-cta-button:hover {
    color: #174875;
    background: #edf2f7;
    text-decoration: none;
    transform: translateY(-2px);
}


/* ==========================================================
   SITE FOOTER
   ========================================================== */

.iwp-site-footer {
    color: #ffffff;
    background: #102f54;
}

.iwp-site-footer *,
.iwp-site-footer *::before,
.iwp-site-footer *::after {
    box-sizing: border-box;
}


/* Main footer layout */

.iwp-footer-main {
    display: grid;
    grid-template-columns:
        minmax(240px, 1.5fr)
        minmax(150px, 0.8fr)
        minmax(150px, 0.8fr)
        minmax(120px, 0.5fr);

    gap: 40px;

    padding: 42px 36px 34px;
}


/* Brand */

.iwp-footer-brand img {
    display: block;

    width: 220px;
    max-width: 100%;
    height: auto;

    margin-bottom: 16px;
}

.iwp-footer-brand p {
    max-width: 330px;
    margin: 0;

    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.55;
}


/* Footer headings */

.iwp-site-footer h3 {
    margin: 0 0 15px;

    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}


/* Footer links */

.iwp-footer-nav,
.iwp-footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.iwp-footer-nav a,
.iwp-footer-links a {
    margin-bottom: 9px;

    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.4;
    text-decoration: none;
}

.iwp-footer-nav a:hover,
.iwp-footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}


/* Social icons */

.iwp-footer-social-icons {
    display: flex;
    gap: 12px;
}

.iwp-footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.iwp-footer-social-icons a:hover {
    color: #174875;
    background: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.iwp-footer-social-icons svg {
    width: 19px;
    height: 19px;

    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Copyright */

.iwp-footer-bottom {
    padding: 15px 36px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.iwp-footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    line-height: 1.4;
    text-align: center;
}


/* ==========================================================
   FOOTER — TABLET
   ========================================================== */

@media screen and (max-width: 900px) {

    .iwp-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
    }
}


/* ==========================================================
   FOOTER — MOBILE
   ========================================================== */

@media screen and (max-width: 560px) {

    .iwp-footer-cta {
        align-items: flex-start;
        flex-direction: column;

        margin-top: 24px;
        padding: 27px 22px;

        border-radius: 6px 6px 0 0;
    }

    .iwp-footer-cta h2 {
        font-size: 24px;
    }

    .iwp-footer-cta-button {
        width: 100%;
    }

    .iwp-footer-main {
        grid-template-columns: 1fr;
        gap: 28px;

        padding: 34px 22px 28px;
    }

    .iwp-footer-brand img {
        width: 190px;
    }

    .iwp-footer-bottom {
        padding: 14px 22px;
    }
}