.iv-blog-page,
.iv-blog {
    color: #898989;
    font-family: "Open Sans", "Inter", sans-serif;
    padding-top: 0;
    padding-bottom: 0;
}

.iv-blog-single {
    .wp-block-image img {
        width: 100%;
        max-width: 720px;
        height: auto;
    }
}

.iv-blog-top-band,
.iv-blog__band--top {
    padding-top: clamp(110px, 12vw, 140px);
    padding-bottom: clamp(42px, 6vw, 72px);
}

.iv-blog-bottom-band,
.iv-blog__band--bottom {
    padding-top: clamp(36px, 5vw, 56px);
    padding-bottom: clamp(72px, 8vw, 110px);
}

.iv-blog-page h1,
.iv-blog-page h2,
.iv-blog-page h3,
.iv-blog-page h4,
.iv-blog-page h5,
.iv-blog-page h6,
.iv-blog h1,
.iv-blog h2,
.iv-blog h3,
.iv-blog h4,
.iv-blog h5,
.iv-blog h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

.iv-blog-shell,
.iv-blog__container {
    max-width: 1100px;
    margin: 0 auto;


    @media (max-width:1099.98px) {
        padding-left: clamp(20px, 6.25vw, 90px);
        padding-right: clamp(20px, 6.25vw, 90px);
    }

    /*@media (max-width:1200px) {
        max-width: 950px;
    }

    @media (max-width:1000px) {
        max-width: 768px;
    }

    @media (max-width:768px) {
        max-width: 600px;
    }

    @media (max-width:480px) {
        max-width: 300px;
    }*/
}

.iv-blog-head,
.iv-blog__head {
    margin-bottom: 42px;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 28px;
}

.iv-blog-kicker,
.iv-blog__kicker {
    margin: 0 0 8px;
    color: #d34e35;
    font-size: 13px;
    letter-spacing: 0;

    font-weight: 700;
    font-family: "Open Sans", "Inter", sans-serif;
}

.iv-blog-title,
.iv-blog__title,
.iv-single-title,
.iv-post__title {
    margin: 0;
    color: #323333;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0px;

}

.iv-blog-title,
.iv-blog__title {
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.4;
    text-transform: uppercase;
}

.iv-blog-description,
.iv-blog__description {
    margin-top: 14px;
    max-width: 760px;
    font-size: clamp(12px, 1.1vw, 13px);
    line-height: 1.2;
    letter-spacing: 0px;
    font-weight: 400;
    font-style: normal;

}

.iv-blog-description p:last-child,
.iv-blog__description p:last-child {
    margin-bottom: 0;
}

.iv-blog-search {
    margin-top: 22px;
    max-width: 560px;
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(5, 69, 109, 0.35);
}

.iv-blog-search input[type="search"] {
    flex: 1;
    min-width: 0;
    height: 48px;
    border: 0;
    background: transparent;
    color: #ffffff;
    padding: 0 16px;
    font-family: "Open Sans", "Inter", sans-serif;
    font-size: 14px;
    outline: none;
}

.iv-blog-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.78);
}

.iv-blog-search button {
    width: 48px;
    height: 48px;
    border: 0;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.iv-blog-search button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.iv-blog-search-wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.iv-blog-search-wrap .iv-blog-search {
    margin-top: 0;
    width: 100%;
    max-width: 460px;
}

.iv-blog-grid,
.iv-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

@media (max-width: 1200px) {

    .iv-blog-grid,
    .iv-blog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.iv-blog-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
}

.iv-blog-card__stretched-link {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.iv-blog-card__stretched-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: -2px;
}

.iv-blog-card__media {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 62.5%;
    overflow: hidden;
    background: #f4f4f4;
}

.iv-blog-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.iv-blog-card__placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f5f5f5, #ececec);
}

.iv-blog-card__content {
    padding: 20px 22px 24px;
}

.iv-blog-card__meta,
.iv-single-meta,
.iv-post__meta {
    margin: 0;
    font-family: "Open Sans", "Inter", sans-serif;
    font-size: clamp(12px, 1.2vw, 14px);
    line-height: 1.2;
    letter-spacing: 0px;

    font-weight: 400;
    font-style: normal;
    color: #888888;
}

.iv-blog-card__dot,
.iv-single-meta__dot,
.iv-post__meta-dot {
    margin: 0 7px;
    color: #b7b7b7;
}

.iv-blog-card__title {
    margin: 14px 0 10px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.4;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0px;

}

.iv-blog-card__title,
.iv-blog-card__title a {
    color: #323333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.iv-blog-card:hover .iv-blog-card__title,
.iv-blog-card__title a:hover {
    color: #d34e35;
}

.iv-blog-card__excerpt {
    margin: 0;
    color: #898989;
    font-size: clamp(13px, 1.4vw, 15px);
    line-height: 1.2;
    letter-spacing: 0px;
    font-weight: 400;
    font-style: normal;

}

.iv-blog-card__link {
    display: inline-block;
    margin-top: 16px;
    color: #d34e35;

    font-family: "Open Sans", "Inter", sans-serif;
    font-size: 12px;

    letter-spacing: 0;
    font-weight: 700;
    transition: color 0.2s ease;
}

.iv-blog-card:hover .iv-blog-card__link,
.iv-blog-card__link:hover {
    color: #1c7cb7;
}

.iv-blog-pagination,
.iv-blog__pagination {
    margin-top: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.iv-blog-pagination .page-numbers,
.iv-blog__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 47.6px;
    height: 47.6px;
    margin: 0;
    border: 1px solid #e6ebef;
    background: #e6ebef;
    color: #123b5a;
    font-family: "Open Sans", "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    transition: all 0.2s ease;
}

.iv-blog-pagination .page-numbers.dots,
.iv-blog__pagination .page-numbers.dots {
    pointer-events: none;
}

.iv-blog-pagination .page-numbers.prev,
.iv-blog-pagination .page-numbers.next,
.iv-blog__pagination .page-numbers.prev,
.iv-blog__pagination .page-numbers.next {
    font-size: 15px;
}

.iv-blog-pagination .page-numbers.current,
.iv-blog-pagination .page-numbers:hover,
.iv-blog__pagination .page-numbers.current,
.iv-blog__pagination .page-numbers:hover {
    color: #ffffff;

    background: #1c7cb7;
}

.iv-blog-empty,
.iv-blog__empty {
    padding: 42px;
    border: 1px solid #e6e6e6;
    text-align: center;
}

.iv-blog-empty h2,
.iv-blog__empty h2 {
    margin: 0 0 8px;
    color: #323333;

    font-family: "Montserrat", sans-serif;
}

.iv-blog-empty p,
.iv-blog__empty p {
    margin: 0;
}

.iv-single-head,
.iv-post__head {
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 0;
    padding-bottom: 0;
}

.iv-single-title,
.iv-post__title {
    margin-top: 10px;
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.4;
}

.iv-single-image,
.iv-post__image {
    width: 100%;

    aspect-ratio: 16 / 9;
    max-height: clamp(300px, 42vw, 560px);
    margin: 0 0 28px;
    border: 1px solid #e6e6e6;
    background: #f4f4f4;
    overflow: hidden;
}

.iv-single-image img,
.iv-post__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.iv-single-content,
.iv-post__content {

    font-family: "Open Sans", "Inter", sans-serif;
    color: #898989;
}

.iv-single-content p,
.iv-post__content p {
    line-height: 1.4;
    letter-spacing: 0px;
    font-weight: 400;
    font-style: normal;
    font-size: 16px !important;
    margin-bottom: 1.3em;
}

.iv-single-content ul,
.iv-single-content ol,
.iv-single-content li,
.iv-post__content ul,
.iv-post__content ol,
.iv-post__content li {
    line-height: 1.4;
    letter-spacing: 0px;
    font-weight: 400;
    font-style: normal;
    font-size: 16px !important;
}

.iv-single-content h2,
.iv-single-content h3,
.iv-single-content h4,
.iv-post__content h2,
.iv-post__content h3,
.iv-post__content h4 {
    color: #323333;
    font-family: "Montserrat", sans-serif;

    margin-top: 1.6em;
    margin-bottom: 0.6em;
}

.iv-single-content h2,
.iv-post__content h2 {
    line-height: 1.4;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0px;

}

.iv-single-content h3,
.iv-post__content h3 {
    line-height: 1.4;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0px;

}

.iv-single-content h4,
.iv-post__content h4 {
    line-height: 1.4;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0px;

}

.iv-single-content a,
.iv-post__content a {
    color: #d34e35;
}

.iv-single-content a:hover,
.iv-post__content a:hover {
    color: #1c7cb7;
}

.iv-single-nav,
.iv-post__nav {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid #e6e6e6;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
}

.iv-single-nav__prev,
.iv-single-nav__next,
.iv-post__nav-prev,
.iv-post__nav-next {
    min-width: 0;
}

.iv-single-nav__next,
.iv-post__nav-next {
    text-align: right;
}

.iv-single-nav a,
.iv-post__nav a {
    color: #555555;
    text-decoration: none;
    font-family: "Open Sans", "Inter", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 700;
    transition: color 0.2s ease;
}

.iv-single-nav__next a,
.iv-post__nav-next a {
    display: flex;
    justify-content: end;
}

.iv-single-nav__prev a,
.iv-post__nav-prev a {
    display: flex;
    justify-content: start;
}

.iv-single-nav a:hover,
.iv-post__nav a:hover {
    color: #d34e35;
}

.iv-single-nav__all,
.iv-post__nav-all {
    color: #1c7cb7;
}

@media (max-width: 991px) {

    .iv-blog-grid,
    .iv-blog__grid {
        grid-template-columns: 1fr;
    }

    .iv-single-image,
    .iv-post__image {
        aspect-ratio: 4 / 3;
        max-height: 420px;
    }

    .iv-single-nav,
    .iv-post__nav {

        text-align: left;
        gap: 12px;
    }

    .iv-single-nav__next,
    .iv-post__nav-next {
        text-align: right;
    }
}

/* Blue + White Theme Overrides */
.iv-blog-page,
.iv-blog {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
}

.iv-blog-top-band,
.iv-blog__band--top {
    background: rgba(28, 124, 183, 1);
    color: rgba(255, 255, 255, 0.9);
}

.iv-blog-bottom-band,
.iv-blog__band--bottom {
    background: #05456d;
    color: rgba(255, 255, 255, 0.9);
}

.iv-blog-head,
.iv-blog__head,
.iv-single-nav,
.iv-post__nav {
    border-color: rgba(255, 255, 255, 0.28);
}

.iv-blog-top-band .iv-blog-head,
.iv-blog-top-band .iv-single-head,
.iv-blog__band--top .iv-blog__head,
.iv-blog__band--top .iv-post__head {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.iv-blog-kicker,
.iv-blog__kicker {
    color: #ffffff;
}

.iv-blog-title,
.iv-blog__title,
.iv-single-title,
.iv-post__title,
.iv-blog-empty h2 {
    color: #ffffff;
}

.iv-blog-description,
.iv-blog__description,
.iv-blog-card__excerpt,
.iv-single-content,
.iv-post__content,
.iv-single-content p,
.iv-post__content p,
.iv-blog-empty p {
    color: rgba(255, 255, 255, 0.9);
}

.iv-blog-card {
    background: rgba(10, 39, 60, 0.32);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.iv-blog-card__media,
.iv-blog-card__placeholder,
.iv-single-image,
.iv-post__image {
    background: rgba(8, 31, 48, 0.55);
    border-color: rgba(255, 255, 255, 0.22);
}

.iv-blog-card__meta,
.iv-single-meta,
.iv-post__meta,
.iv-blog-card__dot,
.iv-single-meta__dot,
.iv-post__meta-dot {
    color: rgba(255, 255, 255, 0.72);
}

.iv-blog-card__title,
.iv-blog-card__title a,
.iv-single-content h2,
.iv-single-content h3,
.iv-single-content h4,
.iv-post__content h2,
.iv-post__content h3,
.iv-post__content h4 {
    color: #ffffff;
}

.iv-blog-card:hover .iv-blog-card__title,
.iv-blog-card__title a:hover,
.iv-single-content a:hover,
.iv-post__content a:hover,
.iv-single-nav a:hover,
.iv-post__nav a:hover {
    color: #d8efff;
}

.iv-blog-card__link,
.iv-single-content a,
.iv-post__content a,
.iv-single-nav__all,
.iv-post__nav-all {
    color: #ffffff;
}

.iv-blog-pagination .page-numbers,
.iv-blog__pagination .page-numbers {
    border-color: #e6ebef;
    color: #123b5a;
    background: #e6ebef;
}

.iv-blog-pagination .page-numbers.current,
.iv-blog-pagination .page-numbers:hover,
.iv-blog__pagination .page-numbers.current,
.iv-blog__pagination .page-numbers:hover {
    color: #ffffff;

    background: #1c7cb7;
}

.iv-blog-empty,
.iv-blog__empty {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(8, 31, 48, 0.3);
}

.iv-single-nav a,
.iv-post__nav a {
    color: #ffffff;
}

.iv-post__nav-icon {
    display: none;
    font-size: 30px;
    line-height: 1;
}

.iv-post__nav-icon svg {
    display: block;
    width: 32px;
    height: 32px;
}

@media (max-width: 480px) {
    .iv-post__nav-label {
        display: none;
    }

    .iv-post__nav-icon {
        display: inline-block;
    }

    .iv-single-nav__prev a,
    .iv-single-nav__next a,
    .iv-post__nav-prev a,
    .iv-post__nav-next a {
        font-size: 0;
        text-transform: none;
    }
}