/* =========================================================
   RESOURCE PAGE
========================================================= */


/* =========================================================
   PAGE WRAPPER
========================================================= */

.resource-page {
    width: 100%;
    background: #ffffff;
    color: #0f172a;
}


/* =========================================================
   RESOURCE PAGE LOADER
========================================================= */

#resource-page-loader {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    background: #ffffff;

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

    flex-direction: column;

    z-index: 999999;

    opacity: 1;
    visibility: visible;

    transition:
        opacity .45s ease,
        visibility .45s ease;
}

#resource-page-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.resource-loader-spinner {
    width: 48px;
    height: 48px;

    border: 4px solid #ddf8fc;
    border-top-color: #06b6d4;

    border-radius: 50%;

    animation:
        resource-loader-spin .8s linear infinite;
}

.resource-loader-text {
    margin-top: 16px;

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

    color: #64748b;

    letter-spacing: .2px;
}

.resource-loader-dots {
    display: inline-flex;
    margin-left: 2px;
}

.resource-loader-dots span {
    width: 4px;
    height: 4px;

    margin-left: 3px;

    background: #06b6d4;

    border-radius: 50%;

    animation:
        resource-loader-dots 1.2s infinite;
}

.resource-loader-dots span:nth-child(2) {
    animation-delay: .2s;
}

.resource-loader-dots span:nth-child(3) {
    animation-delay: .4s;
}

@keyframes resource-loader-spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes resource-loader-dots {

    0%,
    60%,
    100% {
        opacity: .25;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(-3px);
    }

}


/* =========================================================
   PAGE CONTENT
========================================================= */

.resource-page-content {
    opacity: 0;

    transition:
        opacity .5s ease;
}

.resource-page-content.loaded {
    opacity: 1;
}


/* =========================================================
   SECTION 1
   RESOURCE INDEX
========================================================= */

.resources {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    padding: 60px 20px;
}

.resources h1 {
    text-align: center;

    color: #0f172a;

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

    line-height: 1.2;

    margin: 0 0 10px;
}

.resources h1 span {
    color: #06b6d4;
}

.resources > p {
    text-align: center;

    color: #64748b;

    font-size: 15px;

    line-height: 1.6;

    margin: 0 0 40px;
}


/* =========================================================
   RESOURCE INDEX GRID
========================================================= */

.resource-grid {
    display: grid;

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

    gap: 18px;
}


/* =========================================================
   RESOURCE INDEX CARD
========================================================= */

.resource-card {
    display: flex;

    align-items: center;

    gap: 16px;

    width: 100%;

    text-decoration: none;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 12px;

    padding: 20px;

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

.resource-card:hover {
    border-color: #06b6d4;

    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(6, 182, 212, .12);
}


/* =========================================================
   RESOURCE INDEX ICON
========================================================= */

.resource-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;

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

    background: #c0f4ff;

    color: #06b6d4;

    border-radius: 11px;

    font-size: 24px;

    line-height: 1;
}


/* =========================================================
   RESOURCE INDEX CONTENT
========================================================= */

.resource-card-content {
    flex: 1;

    min-width: 0;
}

.resource-unit {
    color: #06b6d4;

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

    letter-spacing: 1px;

    margin-bottom: 5px;
}

.resource-title {
    color: #0f172a;

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

    line-height: 1.4;
}

.resource-arrow {
    color: #06b6d4;

    font-size: 22px;
    font-weight: 400;

    flex-shrink: 0;

    transition:
        transform .25s ease;
}

.resource-card:hover .resource-arrow {
    transform: translateX(5px);
}


/* =========================================================
   SECTION 2
   UNIT I
========================================================= */

.resource-unit1-section {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;

    padding: 70px 20px;

    background: #f4f7f8;
}


/* =========================================================
   UNIT I HEADER
========================================================= */

.resource-unit1-header {
    text-align: center;

    margin-bottom: 40px;
}

.resource-unit1-header > span {
    display: block;

    color: #06b6d4;

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

    letter-spacing: 3px;
}

.resource-unit1-header h2 {
    font-size: 42px;

    line-height: 1.2;

    margin: 10px 0;

    color: #0f172a;

    font-weight: 700;
}

.resource-unit1-header p {
    max-width: 650px;

    margin: 0 auto;

    color: #64748b;

    font-size: 15px;

    line-height: 1.6;
}


/* =========================================================
   UNIT I ACCORDION
========================================================= */

.resource-unit1-accordion details {
    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-left: 5px solid #06b6d4;

    border-radius: 10px;

    margin-bottom: 16px;

    overflow: hidden;

    transition:
        box-shadow .25s ease,
        border-color .25s ease;
}

.resource-unit1-accordion details:hover {
    box-shadow:
        0 8px 22px rgba(6, 182, 212, .08);
}

.resource-unit1-accordion summary {
    cursor: pointer;

    list-style: none;

    padding: 18px 20px;

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

    display: flex;

    align-items: center;

    gap: 16px;

    color: #0f172a;

    line-height: 1.4;
}

.resource-unit1-accordion summary::-webkit-details-marker {
    display: none;
}

.resource-unit1-num {
    width: 42px;
    height: 42px;

    min-width: 42px;

    background: #c0f4ff;

    border-radius: 50%;

    display: flex;

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

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

    color: #06b6d4;
}

.resource-unit1-content {
    padding:
        0 25px
        25px 78px;
}

.resource-unit1-content p {
    color: #555555;

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 14px;
}

.resource-unit1-content ul {
    padding-left: 18px;

    margin-top: 12px;
}

.resource-unit1-content li {
    margin-bottom: 7px;

    color: #555555;

    font-size: 14px;

    line-height: 1.6;
}

.resource-unit1-content strong {
    color: #0f172a;
}

.resource-unit1-content > a {
    display: inline-block;

    margin-top: 8px;

    text-decoration: none;

    color: #06b6d4;

    font-size: 14px;

    font-weight: 600;
}

.resource-unit1-content > a:hover {
    color: #0891b2;
}

.resource-unit1-links {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 14px;
}

.resource-unit1-links a {
    padding: 7px 14px;

    background: #f4f7f8;

    border-radius: 30px;

    border: 1px solid #e5e7eb;

    color: #06b6d4;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition: .2s ease;
}

.resource-unit1-links a:hover {
    background: #06b6d4;

    color: #ffffff;

    border-color: #06b6d4;
}

.resource-unit1-content code {
    background: #f4f7f8;

    padding: 3px 7px;

    border-radius: 5px;

    font-family: monospace;

    font-size: 14px;

    color: #0f172a;
}


/* =========================================================
   SECTION 3
   UNIT II
========================================================= */

.resource-unit2 {
    width: 100%;

    padding: 90px 20px;

    background: #0f172a;

    overflow: hidden;
}


/* =========================================================
   UNIT II HEADER
========================================================= */

.resource-unit2-head {
    text-align: center;

    max-width: 850px;

    margin: 0 auto 60px;
}

.resource-unit2-head > span {
    display: inline-block;

    padding: 8px 18px;

    background: #06b6d4;

    color: #ffffff;

    border-radius: 30px;

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

    letter-spacing: 2px;
}

.resource-unit2-head h2 {
    color: #ffffff;

    font-size: 40px;

    line-height: 1.2;

    margin: 25px 0 15px;

    font-weight: 700;
}

.resource-unit2-head p {
    color: #cbd5e1;

    font-size: 17px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   UNIT II TIMELINE
========================================================= */

.resource-unit2-timeline {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    border-left: 3px solid #06b6d4;

    padding-left: 40px;
}

.resource-unit2-step {
    position: relative;

    margin-bottom: 45px;
}

.resource-unit2-step:last-child {
    margin-bottom: 0;
}

.resource-unit2-circle {
    position: absolute;

    left: -61px;
    top: 15px;

    width: 38px;
    height: 38px;

    background: #06b6d4;

    color: #ffffff;

    border-radius: 50%;

    display: flex;

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

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

.resource-unit2-card {
    width: 100%;

    background: #ffffff;

    padding: 25px;

    border-radius: 14px;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.resource-unit2-card:hover {
    transform: translateX(8px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .15);
}

.resource-unit2-card h3 {
    color: #0f172a;

    font-size: 20px;

    line-height: 1.4;

    margin: 0 0 12px;

    font-weight: 700;
}

.resource-unit2-card p {
    color: #555555;

    font-size: 16px;

    line-height: 1.7;

    margin: 0;
}

.resource-unit2-card > a {
    display: inline-block;

    margin-top: 18px;

    color: #06b6d4;

    text-decoration: none;

    font-size: 16px;

    font-weight: 700;
}

.resource-unit2-card > a:hover {
    color: #0891b2;
}

.resource-unit2-tools {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 20px;
}

.resource-unit2-tools a {
    display: inline-block;

    margin: 0;

    background: #c0f4ff;

    padding: 8px 15px;

    border-radius: 30px;

    text-decoration: none;

    color: #0f172a;

    font-size: 14px;

    font-weight: 500;

    transition: .3s ease;
}

.resource-unit2-tools a:hover {
    background: #06b6d4;

    color: #ffffff;
}


/* =========================================================
   SECTION 4
   UNIT III
========================================================= */

.resource-unit3-section {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 70px 20px;

    background: #ffffff;
}

.resource-unit3-header {
    text-align: center;

    margin-bottom: 45px;
}

.resource-unit3-header h1,
.resource-unit3-header h2 {
    font-size: 40px;

    line-height: 1.2;

    color: #111827;

    font-weight: 700;

    margin-bottom: 10px;
}

.resource-unit3-header p {
    max-width: 700px;

    margin: 0 auto;

    color: #64748b;

    font-size: 16px;
}

.resource-unit3-grid {
    display: grid;

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

    gap: 24px;
}

.resource-unit3-card {
    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 14px;

    padding: 25px;

    box-shadow:
        0 4px 14px rgba(0, 0, 0, .05);

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

.resource-unit3-card:hover {
    transform: translateY(-5px);

    border-color: #06b6d4;

    box-shadow:
        0 12px 30px rgba(6, 182, 212, .12);
}

.resource-unit3-number {
    width: 42px;
    height: 42px;

    display: flex;

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

    background: #c0f4ff;

    color: #06b6d4;

    border-radius: 50%;

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

    margin-bottom: 16px;
}

.resource-unit3-card h2,
.resource-unit3-card h3 {
    font-size: 20px;

    line-height: 1.35;

    color: #111827;

    font-weight: 700;

    margin-bottom: 10px;
}

.resource-unit3-card p {
    color: #555555;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 17px;
}

.resource-unit3-btn {
    display: inline-block;

    padding: 9px 18px;

    background: #06b6d4;

    color: #ffffff;

    text-decoration: none;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 600;

    transition: .25s ease;
}

.resource-unit3-btn:hover {
    background: #0891b2;

    color: #ffffff;
}

.resource-unit3-links {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.resource-unit3-links a {
    color: #06b6d4;

    text-decoration: none;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.5;
}

.resource-unit3-links a:hover {
    text-decoration: underline;
}


/* =========================================================
   SECTION 5
   UNIT IV
========================================================= */

.resource-unit4-section {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;

    padding: 70px 20px;

    background: #ffffff;
}

.resource-unit4-header {
    text-align: center;

    margin-bottom: 45px;
}

.resource-unit4-header h1,
.resource-unit4-header h2 {
    font-size: 40px;

    line-height: 1.2;

    color: #111827;

    font-weight: 700;

    margin-bottom: 10px;
}

.resource-unit4-header p {
    color: #64748b;

    font-size: 16px;
}

.resource-unit4-list {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.resource-unit4-card {
    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-left: 5px solid #06b6d4;

    border-radius: 13px;

    padding: 25px;

    box-shadow:
        0 4px 14px rgba(0, 0, 0, .05);

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

.resource-unit4-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 28px rgba(6, 182, 212, .12);
}

.resource-unit4-number {
    width: 38px;
    height: 38px;

    display: flex;

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

    background: #c0f4ff;

    color: #06b6d4;

    border-radius: 50%;

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

    margin-bottom: 14px;
}

.resource-unit4-card h2,
.resource-unit4-card h3 {
    color: #111827;

    font-size: 21px;

    line-height: 1.35;

    font-weight: 700;

    margin-bottom: 10px;
}

.resource-unit4-card p {
    color: #555555;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 15px;
}

.resource-unit4-card ul {
    margin: 10px 0 18px;

    padding-left: 22px;

    color: #555555;
}

.resource-unit4-card li {
    margin-bottom: 7px;

    font-size: 14px;

    line-height: 1.6;
}

.resource-unit4-btn {
    display: inline-block;

    padding: 9px 18px;

    background: #06b6d4;

    color: #ffffff;

    text-decoration: none;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 600;

    transition: .25s ease;
}

.resource-unit4-btn:hover {
    background: #0891b2;

    color: #ffffff;
}


/* =========================================================
   SECTION 6
   UNIT V
========================================================= */

.resource-unit5 {
    width: 100%;

    background: #0f172a;

    color: #f8fafc;
}

.resource-unit5-container {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;

    padding: 70px 20px;
}

.resource-unit5-header {
    text-align: center;

    margin-bottom: 50px;
}

.resource-unit5-header h1,
.resource-unit5-header h2 {
    font-size: 40px;

    font-weight: 700;

    line-height: 1.3;

    color: #ffffff;

    margin-bottom: 12px;
}

.resource-unit5-header p {
    font-size: 17px;

    color: #94a3b8;

    line-height: 1.6;
}

.resource-unit5 details {
    background: #111827;

    border: 1px solid #263244;

    border-left: 5px solid #06b6d4;

    border-radius: 12px;

    margin-bottom: 18px;

    overflow: hidden;

    transition:
        all .3s ease;
}

.resource-unit5 details:hover {
    border-color: #06b6d4;

    box-shadow:
        0 10px 25px rgba(6, 182, 212, .10);
}

.resource-unit5 summary {
    list-style: none;

    cursor: pointer;

    padding: 20px 24px;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.5;

    color: #ffffff;

    display: flex;

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

    gap: 15px;
}

.resource-unit5 summary::-webkit-details-marker {
    display: none;
}

.resource-unit5 summary::after {
    content: "+";

    color: #06b6d4;

    font-size: 25px;

    font-weight: 400;

    flex-shrink: 0;

    transition: .3s ease;
}

.resource-unit5 details[open] summary::after {
    content: "−";
}

.resource-unit5-content {
    padding:
        0 24px
        25px;

    color: #cbd5e1;

    font-size: 16px;

    line-height: 1.7;
}

.resource-unit5-content p {
    margin-bottom: 18px;
}

.resource-unit5-btn {
    display: inline-block;

    margin-top: 5px;

    padding: 10px 20px;

    background: #06b6d4;

    color: #ffffff;

    text-decoration: none;

    border-radius: 7px;

    font-size: 15px;

    font-weight: 500;

    transition:
        all .3s ease;
}

.resource-unit5-btn:hover {
    background: #0891b2;

    color: #ffffff;

    transform: translateY(-2px);
}

.resource-unit5-links {
    display: grid;

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

    gap: 10px;

    margin-top: 15px;
}

.resource-unit5-links a {
    display: block;

    padding: 11px 15px;

    background: #0f172a;

    border: 1px solid #263244;

    border-radius: 8px;

    text-decoration: none;

    color: #06b6d4;

    font-size: 15px;

    font-weight: 500;

    line-height: 1.5;

    transition:
        all .3s ease;
}

.resource-unit5-links a:hover {
    background: #06b6d4;

    color: #ffffff;

    border-color: #06b6d4;

    transform: translateY(-2px);
}


/* =========================================================
   SECTION 7
   UNIT VI
========================================================= */

.resource-unit6 {
    width: 100%;

    background: #ffffff;

    color: #333333;
}

.resource-unit6-container {
    width: 100%;
    max-width: 1050px;

    margin: 0 auto;

    padding: 70px 20px;
}

.resource-unit6-header {
    text-align: center;

    margin-bottom: 55px;
}

.resource-unit6-header h1,
.resource-unit6-header h2 {
    color: #111111;

    font-size: 42px;

    font-weight: 700;

    line-height: 1.3;

    margin-bottom: 12px;
}

.resource-unit6-header p {
    color: #64748b;

    font-size: 17px;
}

.resource-unit6-block {
    background: #ffffff;

    border: 1px solid #e5e6e9;

    border-left: 4px solid #06b6d4;

    border-radius: 12px;

    padding: 28px 30px;

    margin-bottom: 22px;

    box-shadow:
        0 4px 14px rgba(0, 0, 0, .05);

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

.resource-unit6-block:hover {
    border-color: #06b6d4;

    box-shadow:
        0 10px 25px rgba(6, 182, 212, .10);

    transform: translateY(-2px);
}

.resource-unit6-block h2,
.resource-unit6-block h3 {
    color: #06b6d4;

    font-size: 22px;

    font-weight: 700;

    line-height: 1.4;

    margin-bottom: 18px;
}

.resource-unit6-block p {
    color: #555555;

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 15px;
}

.resource-unit6-block ul {
    padding-left: 22px;
}

.resource-unit6-block li {
    color: #555555;

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 11px;
}

.resource-unit6-block strong {
    color: #111111;
}

.resource-unit6-block a {
    color: #06b6d4;

    text-decoration: none;

    font-weight: 500;

    transition: .3s ease;
}

.resource-unit6-block a:hover {
    color: #0596af;

    text-decoration: underline;
}

.resource-unit6-link {
    display: inline-block;

    margin-top: 8px;

    padding: 9px 17px;

    background: #06b6d4;

    color: #ffffff !important;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none !important;

    transition: .3s ease;
}

.resource-unit6-link:hover {
    background: #0596af;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   SECTION 8
   MOST IMPORTANT
========================================================= */

.resource-final-section {
    width: calc(100% - 40px);
    max-width: 1000px;

    margin: 70px auto;

    padding: 60px 35px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 20px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .06);
}

.resource-final-title {
    font-size: 38px;

    font-weight: 800;

    color: #111827;

    margin-bottom: 20px;
}

.resource-final-divider {
    width: 90px;
    height: 4px;

    background: #06b6d4;

    margin: 0 auto 40px;

    border-radius: 10px;
}

.resource-final-quote {
    font-size: 28px;

    font-style: italic;

    font-weight: 500;

    color: #06b6d4;

    line-height: 1.6;

    margin-bottom: 50px;
}

.resource-final-points {
    text-align: left;

    max-width: 850px;

    margin: 0 auto;
}

.resource-final-point {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 20px;

    margin-bottom: 18px;

    background: #f8fafc;

    border-left: 5px solid #06b6d4;

    border-radius: 12px;

    transition: .3s ease;
}

.resource-final-point:hover {
    transform: translateX(8px);

    background: #eefcff;
}

.resource-final-number {
    width: 38px;
    height: 38px;

    min-width: 38px;

    border-radius: 50%;

    background: #06b6d4;

    color: #ffffff;

    display: flex;

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

    font-weight: 700;

    flex-shrink: 0;
}

.resource-final-text {
    color: #374151;

    font-size: 17px;

    line-height: 1.7;
}

.resource-final-text strong {
    color: #111827;
}

.resource-final-footer {
    margin-top: 55px;

    font-size: 24px;

    font-weight: 700;

    color: #111827;

    line-height: 1.7;
}

.resource-final-footer span {
    color: #06b6d4;
}


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

@media (max-width: 900px) {

    .resource-unit3-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .resource-unit3-header h1,
    .resource-unit3-header h2 {
        font-size: 34px;
    }

}


@media (max-width: 768px) {

    /* Index */

    .resources {
        padding: 45px 18px;
    }

    .resources h1 {
        font-size: 30px;
    }

    .resources > p {
        font-size: 14px;

        margin-bottom: 30px;
    }

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

        gap: 14px;
    }


    /* Unit I */

    .resource-unit1-section {
        padding: 50px 16px;
    }

    .resource-unit1-header {
        margin-bottom: 30px;
    }

    .resource-unit1-header h2 {
        font-size: 32px;
    }

    .resource-unit1-header p {
        font-size: 14px;
    }

    .resource-unit1-accordion summary {
        padding: 16px;

        font-size: 16px;

        gap: 12px;
    }

    .resource-unit1-num {
        width: 38px;
        height: 38px;

        min-width: 38px;
    }

    .resource-unit1-content {
        padding:
            0 18px
            20px 66px;
    }

    .resource-unit1-content p {
        font-size: 14px;
    }


    /* Unit II */

    .resource-unit2 {
        padding: 60px 15px;
    }

    .resource-unit2-head {
        margin-bottom: 40px;
    }

    .resource-unit2-head h2 {
        font-size: 28px;
    }

    .resource-unit2-head p {
        font-size: 14px;
    }

    .resource-unit2-timeline {
        padding-left: 25px;

        border-left-width: 2px;
    }

    .resource-unit2-step {
        margin-bottom: 25px;
    }

    .resource-unit2-circle {
        left: -40px;

        width: 30px;
        height: 30px;
    }

    .resource-unit2-card {
        padding: 20px;
    }

    .resource-unit2-card h3 {
        font-size: 18px;
    }

    .resource-unit2-card p,
    .resource-unit2-card > a {
        font-size: 14px;
    }


    /* Unit III */

    .resource-unit3-section {
        padding: 55px 18px;
    }


    /* Unit IV */

    .resource-unit4-section {
        padding: 50px 18px;
    }

    .resource-unit4-header {
        margin-bottom: 30px;
    }

    .resource-unit4-header h1,
    .resource-unit4-header h2 {
        font-size: 32px;
    }

    .resource-unit4-card {
        padding: 20px;
    }


    /* Unit V */

    .resource-unit5-container {
        padding: 45px 14px;
    }

    .resource-unit5-header {
        margin-bottom: 30px;
    }

    .resource-unit5-header h1,
    .resource-unit5-header h2 {
        font-size: 28px;
    }

    .resource-unit5-header p {
        font-size: 14px;
    }

    .resource-unit5 summary {
        padding: 15px 14px;

        font-size: 14px;
    }

    .resource-unit5-content {
        padding:
            0 14px
            18px;

        font-size: 14px;
    }

    .resource-unit5-links {
        grid-template-columns: 1fr;
    }

    .resource-unit5-links a,
    .resource-unit5-btn {
        font-size: 14px;
    }


    /* Unit VI */

    .resource-unit6-container {
        padding: 45px 15px;
    }

    .resource-unit6-header {
        margin-bottom: 35px;
    }

    .resource-unit6-header h1,
    .resource-unit6-header h2 {
        font-size: 30px;
    }

    .resource-unit6-header p {
        font-size: 14px;
    }

    .resource-unit6-block {
        padding: 20px;

        margin-bottom: 16px;
    }

    .resource-unit6-block h2,
    .resource-unit6-block h3 {
        font-size: 19px;
    }

    .resource-unit6-block p,
    .resource-unit6-block li,
    .resource-unit6-link {
        font-size: 14px;
    }


    /* Final */

    .resource-final-section {
        margin: 45px auto;

        padding: 40px 20px;

        border-radius: 14px;
    }

    .resource-final-title {
        font-size: 30px;
    }

    .resource-final-divider {
        margin-bottom: 30px;
    }

    .resource-final-quote {
        font-size: 22px;

        line-height: 1.5;

        margin-bottom: 35px;
    }

    .resource-final-point {
        gap: 12px;

        padding: 16px;

        margin-bottom: 14px;
    }

    .resource-final-number {
        width: 32px;
        height: 32px;

        min-width: 32px;
    }

    .resource-final-text {
        font-size: 14px;
    }

    .resource-final-footer {
        margin-top: 40px;

        font-size: 20px;
    }

}


/* =========================================================
   MOBILE
   Minimum normal text size: 14px
========================================================= */

@media (max-width: 600px) {

    /* Index */

    .resources {
        padding: 35px 14px;
    }

    .resources h1 {
        font-size: 26px;
    }

    .resources > p {
        font-size: 14px;

        margin-bottom: 25px;
    }

    .resource-grid {
        gap: 12px;
    }

    .resource-card {
        gap: 12px;

        padding: 15px;

        border-radius: 10px;
    }

    .resource-icon {
        width: 44px;
        height: 44px;

        min-width: 44px;

        font-size: 20px;
    }

    .resource-unit,
    .resource-title,
    .resource-arrow {
        font-size: 14px;
    }


    /* Unit I */

    .resource-unit1-section {
        padding: 35px 12px;
    }

    .resource-unit1-header {
        margin-bottom: 25px;
    }

    .resource-unit1-header > span {
        font-size: 14px;

        letter-spacing: 2.5px;
    }

    .resource-unit1-header h2 {
        font-size: 26px;
    }

    .resource-unit1-header p {
        font-size: 14px;
    }

    .resource-unit1-accordion details {
        border-left-width: 4px;

        border-radius: 9px;

        margin-bottom: 12px;
    }

    .resource-unit1-accordion summary {
        padding: 14px;

        font-size: 14px;

        gap: 10px;
    }

    .resource-unit1-num {
        width: 34px;
        height: 34px;

        min-width: 34px;

        font-size: 14px;
    }

    .resource-unit1-content {
        padding:
            0 14px
            16px 58px;
    }

    .resource-unit1-content p,
    .resource-unit1-content li,
    .resource-unit1-content > a,
    .resource-unit1-links a,
    .resource-unit1-content code {
        font-size: 14px;
    }


    /* Unit II */

    .resource-unit2 {
        padding: 45px 12px;
    }

    .resource-unit2-head {
        margin-bottom: 32px;
    }

    .resource-unit2-head > span {
        font-size: 14px;
    }

    .resource-unit2-head h2 {
        font-size: 24px;
    }

    .resource-unit2-head p {
        font-size: 14px;
    }

    .resource-unit2-timeline {
        padding-left: 20px;

        border-left-width: 2px;
    }

    .resource-unit2-step {
        margin-bottom: 20px;
    }

    .resource-unit2-circle {
        left: -31px;

        width: 24px;
        height: 24px;

        font-size: 14px;
    }

    .resource-unit2-card {
        padding: 16px;

        border-radius: 11px;
    }

    .resource-unit2-card h3 {
        font-size: 16px;
    }

    .resource-unit2-card p,
    .resource-unit2-card > a,
    .resource-unit2-tools a {
        font-size: 14px;
    }


    /* Unit III */

    .resource-unit3-section {
        padding: 40px 14px;
    }

    .resource-unit3-header {
        margin-bottom: 28px;
    }

    .resource-unit3-header h1,
    .resource-unit3-header h2 {
        font-size: 28px;
    }

    .resource-unit3-header p {
        font-size: 14px;
    }

    .resource-unit3-grid {
        gap: 14px;
    }

    .resource-unit3-card {
        padding: 18px;

        border-radius: 11px;
    }

    .resource-unit3-number,
    .resource-unit3-card h2,
    .resource-unit3-card h3,
    .resource-unit3-card p,
    .resource-unit3-btn,
    .resource-unit3-links a {
        font-size: 14px;
    }


    /* Unit IV */

    .resource-unit4-section {
        padding: 40px 14px;
    }

    .resource-unit4-header h1,
    .resource-unit4-header h2 {
        font-size: 27px;
    }

    .resource-unit4-header p {
        font-size: 14px;
    }

    .resource-unit4-card {
        padding: 17px;

        border-left-width: 4px;

        border-radius: 10px;
    }

    .resource-unit4-number,
    .resource-unit4-card h2,
    .resource-unit4-card h3,
    .resource-unit4-card p,
    .resource-unit4-card li,
    .resource-unit4-btn {
        font-size: 14px;
    }


    /* Unit V */

    .resource-unit5-container {
        padding: 40px 12px;
    }

    .resource-unit5-header h1,
    .resource-unit5-header h2 {
        font-size: 25px;
    }

    .resource-unit5 summary,
    .resource-unit5-content,
    .resource-unit5-btn,
    .resource-unit5-links a {
        font-size: 14px;
    }


    /* Unit VI */

    .resource-unit6-container {
        padding: 40px 14px;
    }

    .resource-unit6-header h1,
    .resource-unit6-header h2 {
        font-size: 27px;
    }

    .resource-unit6-block {
        padding: 18px;
    }

    .resource-unit6-block h2,
    .resource-unit6-block h3 {
        font-size: 18px;
    }

    .resource-unit6-block p,
    .resource-unit6-block li,
    .resource-unit6-block a,
    .resource-unit6-link {
        font-size: 14px;
    }


    /* Final */

    .resource-final-section {
        width: calc(100% - 20px);

        margin: 30px auto;

        padding: 32px 15px;
    }

    .resource-final-title {
        font-size: 26px;
    }

    .resource-final-divider {
        width: 70px;
        height: 3px;

        margin-bottom: 25px;
    }

    .resource-final-quote {
        font-size: 19px;

        line-height: 1.5;

        margin-bottom: 30px;
    }

    .resource-final-point {
        gap: 10px;

        padding: 14px;

        border-left-width: 4px;
    }

    .resource-final-number {
        width: 30px;
        height: 30px;

        min-width: 30px;

        font-size: 14px;
    }

    .resource-final-text {
        font-size: 14px;
    }

    .resource-final-footer {
        margin-top: 32px;

        font-size: 18px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .resources,
    .resource-unit1-section,
    .resource-unit2,
    .resource-unit3-section,
    .resource-unit4-section,
    .resource-unit5-container,
    .resource-unit6-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .resources h1,
    .resource-unit1-header h2,
    .resource-unit2-head h2,
    .resource-unit3-header h1,
    .resource-unit3-header h2,
    .resource-unit4-header h1,
    .resource-unit4-header h2,
    .resource-unit5-header h1,
    .resource-unit5-header h2,
    .resource-unit6-header h1,
    .resource-unit6-header h2 {
        font-size: 24px;
    }

    /* Keep all ordinary mobile text >= 14px */

    .resource-unit,
    .resource-title,
    .resource-arrow,
    .resource-unit1-header p,
    .resource-unit1-accordion summary,
    .resource-unit1-content p,
    .resource-unit1-content li,
    .resource-unit1-content a,
    .resource-unit1-links a,
    .resource-unit1-content code,
    .resource-unit2-head p,
    .resource-unit2-card p,
    .resource-unit2-card a,
    .resource-unit2-tools a,
    .resource-unit3-header p,
    .resource-unit3-card p,
    .resource-unit3-btn,
    .resource-unit3-links a,
    .resource-unit4-header p,
    .resource-unit4-card p,
    .resource-unit4-card li,
    .resource-unit4-btn,
    .resource-unit5-header p,
    .resource-unit5 summary,
    .resource-unit5-content,
    .resource-unit5-btn,
    .resource-unit5-links a,
    .resource-unit6-header p,
    .resource-unit6-block p,
    .resource-unit6-block li,
    .resource-unit6-block a,
    .resource-unit6-link,
    .resource-final-text {
        font-size: 14px;
    }

}


/* =========================================================
   SCROLL OFFSET
   Helpful for resource index anchor links
========================================================= */

#resource-unit-1,
#resource-unit-2,
#resource-unit-3,
#resource-unit-4,
#resource-unit-5,
#resource-unit-6 {
    scroll-margin-top: 20px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

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

    html {
        scroll-behavior: auto;
    }

    .resource-loader-spinner,
    .resource-loader-dots span {
        animation: none !important;
    }

    .resource-card,
    .resource-unit1-accordion details,
    .resource-unit2-card,
    .resource-unit3-card,
    .resource-unit4-card,
    .resource-unit5 details,
    .resource-unit5-btn,
    .resource-unit5-links a,
    .resource-unit6-block,
    .resource-unit6-link,
    .resource-final-point {
        transition: none !important;
    }

}

/* =========================================================
   RESOURCE PORTAL — HERO WITH BACKGROUND IMAGE
========================================================= */

.resource-portal {
    position: relative;
    overflow: hidden;
    padding: 92px 20px 70px;
    font-family: 'Roboto', sans-serif;

    /* Deep navy base + subtle dot-grid pattern (works even before any photo loads) */
    background-color: #0b1f3a;
    background-image:
        radial-gradient(circle at 22% 28%, rgba(6, 182, 212, .28) 0%, transparent 55%),
        radial-gradient(circle at 82% 75%, rgba(6, 182, 212, .18) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 42 42'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23ffffff' fill-opacity='0.08'/%3E%3C/svg%3E"),
        linear-gradient(160deg, #0b1f3a 0%, #102a4a 55%, #0b1f3a 100%);
    background-size: cover, cover, 42px 42px, cover;
    background-position: center, center, center, center;
}

/* Photographic background layer — swap the URL for a real photo any time;
   the gradient/pattern above still shows behind it as a safety net. */
.resource-portal::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    opacity: .22;
    mix-blend-mode: luminosity;
    pointer-events: none;
}

/* Dark gradient overlay so text stays readable over the photo */
.resource-portal::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 31, 58, .82) 0%, rgba(11, 31, 58, .93) 60%, #0b1f3a 100%);
    pointer-events: none;
}

.resource-portal-inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.resource-portal-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 15px;
    border-radius: 999px;
    background: rgba(6, 182, 212, .14);
    color: #67e8f9;
    border: 1px solid rgba(103, 232, 249, .35);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.resource-portal h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(30px, 4.2vw, 48px);
    line-height: 1.16;
    font-weight: 900;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .25);
}

.resource-portal h1 span {
    color: #22d3ee;
}

.resource-portal p {
    max-width: 680px;
    margin: 14px auto 30px;
    color: rgba(255, 255, 255, .72);
    font-size: 14.5px;
    line-height: 1.7;
}

.resource-portal-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    text-align: left;
}

.resource-portal-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 19px 20px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.resource-portal-links a:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .12);
    border-color: rgba(103, 232, 249, .55);
}

.resource-portal-links span {
    flex-shrink: 0;
    color: #22d3ee;
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 760px) {

    .resource-portal {
        padding: 58px 16px 46px;
    }

    .resource-portal p {
        font-size: 12.5px;
    }

    .resource-portal-links {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .resource-portal-links a {
        font-size: 12.5px;
        padding: 15px 16px;
    }
}

@media (max-width: 380px) {

    .resource-portal {
        padding: 46px 14px 36px;
    }

    .resource-portal h1 {
        font-size: 25px;
    }
}


/* =========================================================
   RESOURCE PORTAL V2 — FEATURED TOP SECTION
========================================================= */
.resource-page .resources{max-width:none;padding:0 0 60px}
.resource-page .resource-index-inner{width:min(1100px,calc(100% - 40px));margin:0 auto;padding-top:54px}
.resource-portal-v2{position:relative;overflow:hidden;min-height:500px;display:flex;align-items:center;background-image:url('../images/resources-hero-bg.svg');background-size:cover;background-position:center;border-bottom:1px solid #bceef4;color:#fff}
.resource-portal-v2 .resource-portal-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(3,25,38,.25) 0%,rgba(3,25,38,.08) 58%,rgba(3,25,38,0) 100%)}
.resource-portal-v2 .resource-portal-inner{position:relative;z-index:2;width:min(1180px,calc(100% - 48px));margin:0 auto;display:grid;grid-template-columns:minmax(0,1fr) 260px;gap:50px;align-items:center;padding:72px 0}
.resource-portal-v2 .resource-portal-content{max-width:790px}
.resource-portal-v2 .resource-portal-label{display:inline-flex;margin-bottom:17px;padding:7px 12px;border:1px solid rgba(255,255,255,.25);border-radius:999px;background:rgba(255,255,255,.09);color:#bff7ff;font-size:10px;font-weight:900;letter-spacing:1.5px;text-transform:uppercase}
.resource-portal-v2 h1{max-width:780px;margin:0;text-align:left;color:#fff;font-size:clamp(38px,5vw,62px);font-weight:900;letter-spacing:-1.7px;line-height:1.06}.resource-portal-v2 h1 span{display:block;color:#67e8f9}
.resource-portal-v2 p{max-width:720px;margin:18px 0 0;color:#d5edf2;font-size:14px;line-height:1.8}
.resource-portal-v2 .resource-portal-links{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:11px;margin-top:28px}
.resource-portal-v2 .resource-portal-links a{position:relative;display:flex;flex-direction:column;align-items:flex-start;min-height:105px;padding:15px 39px 15px 15px;border:1px solid rgba(255,255,255,.18);border-radius:12px;background:rgba(255,255,255,.09);backdrop-filter:blur(9px);color:#fff;text-decoration:none;transition:.2s ease}.resource-portal-v2 .resource-portal-links a:hover{transform:translateY(-3px);border-color:rgba(103,232,249,.65);background:rgba(255,255,255,.14)}
.resource-portal-v2 .resource-portal-links strong{font-size:12.5px}.resource-portal-v2 .resource-portal-links small{margin-top:5px;color:#b9dfe5;font-size:10.5px}.resource-portal-v2 .resource-portal-links span{position:absolute;right:14px;top:50%;transform:translateY(-50%);color:#67e8f9;font-size:20px}
.resource-portal-v2 .resource-portal-badge{justify-self:end;width:215px;height:215px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.2);border-radius:50%;background:rgba(255,255,255,.07);box-shadow:0 0 0 26px rgba(255,255,255,.025),0 0 0 54px rgba(255,255,255,.018);backdrop-filter:blur(8px)}.resource-portal-v2 .resource-portal-badge span{color:#67e8f9;font-size:70px;font-weight:900;line-height:1}.resource-portal-v2 .resource-portal-badge small{margin-top:5px;color:#e1f8fb;font-size:11px;font-weight:800;letter-spacing:2px;text-transform:uppercase}
@media(max-width:900px){.resource-portal-v2 .resource-portal-inner{grid-template-columns:1fr}.resource-portal-v2 .resource-portal-badge{display:none}}
@media(max-width:680px){.resource-portal-v2{min-height:auto}.resource-portal-v2 .resource-portal-inner{width:calc(100% - 28px);padding:50px 0}.resource-portal-v2 h1{font-size:37px}.resource-portal-v2 p{font-size:12.5px}.resource-portal-v2 .resource-portal-links{grid-template-columns:1fr}.resource-portal-v2 .resource-portal-links a{min-height:78px}.resource-page .resource-index-inner{width:calc(100% - 24px);padding-top:38px}}

/* =========================================================
   RESOURCE PORTAL V3 — TOP FEATURE SECTION
========================================================= */
.resource-portal-v3{position:relative;isolation:isolate;overflow:hidden;min-height:610px;display:flex;align-items:center;color:#fff;background:#062b38;border-bottom:1px solid #8be7f2}
.resource-portal-v3-bg{position:absolute;inset:0;z-index:-5;background-image:linear-gradient(105deg,rgba(3,25,35,.96) 0%,rgba(4,54,68,.91) 47%,rgba(5,104,122,.80) 100%),url('../images/resources-hero-bg.svg');background-size:cover;background-position:center}
.resource-portal-v3-grid{position:absolute;inset:0;z-index:-4;background-image:linear-gradient(rgba(186,247,255,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(186,247,255,.07) 1px,transparent 1px);background-size:54px 54px;mask-image:linear-gradient(90deg,#000,rgba(0,0,0,.7),transparent)}
.resource-portal-v3-orb{position:absolute;z-index:-3;border-radius:50%;filter:blur(1px);pointer-events:none}.resource-portal-v3-orb-a{width:520px;height:520px;right:-130px;top:-190px;background:radial-gradient(circle,rgba(103,232,249,.25),transparent 70%)}.resource-portal-v3-orb-b{width:360px;height:360px;left:35%;bottom:-260px;background:radial-gradient(circle,rgba(14,165,233,.14),transparent 70%)}
.resource-portal-v3-inner{width:min(1180px,calc(100% - 48px));margin:0 auto;display:grid;grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);gap:70px;align-items:center;padding:82px 0 88px}
.resource-portal-v3-copy{max-width:720px}.resource-portal-v3-kicker{display:inline-flex;align-items:center;gap:8px;margin-bottom:18px;padding:7px 11px;border:1px solid rgba(191,247,255,.22);border-radius:999px;background:rgba(255,255,255,.07);backdrop-filter:blur(10px);color:#bff7ff;font-size:9.5px;font-weight:900;letter-spacing:1.35px;text-transform:uppercase}.resource-portal-v3-kicker span{color:#67e8f9}
.resource-portal-v3 h1{max-width:760px;margin:0!important;color:#fff!important;font-size:clamp(42px,5.3vw,68px)!important;font-weight:950!important;line-height:1.02!important;letter-spacing:-2.1px!important;text-align:left!important}.resource-portal-v3 h1 span{display:block;margin-top:7px;color:#67e8f9!important}
.resource-portal-v3 p{max-width:690px;margin:21px 0 0!important;color:#cdebf0!important;font-size:14px!important;line-height:1.82!important}
.resource-portal-v3-stats{display:flex;flex-wrap:wrap;gap:10px;margin-top:27px}.resource-portal-v3-stats div{min-width:115px;padding:11px 14px;border:1px solid rgba(255,255,255,.12);border-radius:11px;background:rgba(255,255,255,.065);backdrop-filter:blur(8px)}.resource-portal-v3-stats strong{display:block;color:#fff;font-size:15px;font-weight:900}.resource-portal-v3-stats span{display:block;margin-top:2px;color:#9dd9e2;font-size:8.5px;font-weight:750;letter-spacing:.5px;text-transform:uppercase}
.resource-portal-v3-explore{display:inline-flex;align-items:center;gap:10px;margin-top:28px;padding:11px 15px;border-radius:10px;background:#67e8f9;color:#073444!important;font-size:10.5px;font-weight:900;text-decoration:none!important;box-shadow:0 14px 30px rgba(103,232,249,.16);transition:.2s ease}.resource-portal-v3-explore:hover{transform:translateY(-2px);background:#cffafe}.resource-portal-v3-explore span{font-size:14px}
.resource-portal-v3-cards{position:relative;display:grid;gap:12px}.resource-portal-v3-cards::before{content:"";position:absolute;inset:-24px;border:1px solid rgba(186,247,255,.08);border-radius:28px;transform:rotate(-2deg);pointer-events:none}
.resource-portal-v3-card{position:relative;display:grid;grid-template-columns:48px 1fr 28px;gap:13px;align-items:center;min-height:104px;padding:16px;border:1px solid rgba(216,251,255,.17);border-radius:16px;background:rgba(255,255,255,.08);box-shadow:0 18px 38px rgba(2,20,28,.13);backdrop-filter:blur(12px);color:#fff!important;text-decoration:none!important;transition:transform .22s ease,border-color .22s ease,background .22s ease,box-shadow .22s ease}.resource-portal-v3-card:hover{transform:translateX(-6px);border-color:rgba(103,232,249,.5);background:rgba(255,255,255,.13);box-shadow:0 24px 48px rgba(2,20,28,.2)}.resource-portal-v3-card-main{min-height:125px;background:linear-gradient(135deg,rgba(103,232,249,.16),rgba(255,255,255,.08));border-color:rgba(103,232,249,.32)}
.resource-portal-v3-card-icon{width:48px;height:48px;display:flex;align-items:center;justify-content:center;border-radius:13px;background:rgba(103,232,249,.14);border:1px solid rgba(103,232,249,.16);color:#67e8f9;font-size:14px;font-weight:950}.resource-portal-v3-card-icon i{font-size:17px}.resource-portal-v3-card-copy{display:block}.resource-portal-v3-card-copy small{display:block;color:#8dd8e2;font-size:8px;font-style:normal;font-weight:800;letter-spacing:.9px;text-transform:uppercase}.resource-portal-v3-card-copy strong{display:block;margin-top:3px;color:#fff;font-size:13px;font-weight:900}.resource-portal-v3-card-copy em{display:block;margin-top:4px;color:#b9dce2;font-size:9.5px;font-style:normal;line-height:1.45}.resource-portal-v3-card-arrow{color:#67e8f9;font-size:18px;transition:transform .2s ease}.resource-portal-v3-card:hover .resource-portal-v3-card-arrow{transform:translate(3px,-3px)}
@media(max-width:930px){.resource-portal-v3-inner{grid-template-columns:1fr;gap:43px;padding:70px 0}.resource-portal-v3-copy{max-width:800px}.resource-portal-v3-cards{grid-template-columns:repeat(3,minmax(0,1fr))}.resource-portal-v3-card{grid-template-columns:42px 1fr;min-height:145px;align-content:start}.resource-portal-v3-card-arrow{position:absolute;right:14px;top:14px}.resource-portal-v3-card-icon{width:42px;height:42px}.resource-portal-v3-card-copy{grid-column:1/-1}}
@media(max-width:680px){.resource-portal-v3{min-height:auto}.resource-portal-v3-inner{width:calc(100% - 28px);padding:52px 0}.resource-portal-v3 h1{font-size:38px!important;letter-spacing:-1.5px!important}.resource-portal-v3 p{font-size:12.5px!important}.resource-portal-v3-stats{display:grid;grid-template-columns:repeat(3,1fr)}.resource-portal-v3-stats div{min-width:0;padding:9px}.resource-portal-v3-stats strong{font-size:12px}.resource-portal-v3-stats span{font-size:7px}.resource-portal-v3-cards{grid-template-columns:1fr}.resource-portal-v3-card{min-height:92px;grid-template-columns:42px 1fr 24px;align-content:center}.resource-portal-v3-card-copy{grid-column:auto}.resource-portal-v3-card-arrow{position:static}.resource-page .resource-index-inner{width:calc(100% - 24px);padding-top:38px}}
.resource-portal-v3::before,.resource-portal-v3::after{display:none!important}
