.pathways-to-growth-section {
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    background-position: center;
    padding: 128px 0 405px 0;
}

.pathways-to-growth-section::before {
    content: "";
    background-image: url('../../../assets/images/pathways-to-growth-right-shape.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
    height: 61%;
    width: 25.5%;
    background-position: right;
}

.pathways-section-top-shape img {
    height: 53px;
}

.pathways-section-bottom-shape-mobile {
    display: none;
}

.pathways-section-top-shape {
    position: absolute;
    top: -50px;
    pointer-events: none;
    width: 100%;
}

.pathways-section-top-shape img,
.pathways-section-bottom-shape img {
    width: 100%;
}

.pathways-section-bottom-shape,
.pathways-section-bottom-shape-mobile {
    position: absolute;
    bottom: 0;
    width: 100%;
    pointer-events: none;
    z-index: -1;
}

.pathways-grid {
    gap: 32px;
    padding-block-start: 35px;
}

.pathways-card {
    width: calc((100% - 96px) / 4);
    padding: 25px;
    border-radius: 16px;
    border: 5px solid transparent;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pathways-card:hover {
    box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.10);
    background-color: var(--color-white);
    border-color: #0CA04A4D;
}

.pathways-icon {
    padding-top: 99.6%;
    margin-inline: auto;
    margin-block-end: 30px;
    width: 100%;
}
.pathways-to-growth-section .pathways-card:nth-child(3) img {
    transform: scale(1.18);
}
.pathways-icon img {
    border-radius: 50%;
}

.pathways-title {
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0 0 16px 0;
}

.pathways-link {
    margin: 15px 0 0 0;
    font-weight: 600;
    letter-spacing: 0.36px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.pathways-link .link-icon svg,
.pathways-link .link-icon svg path {
    transition: 0.5s;
}

body .pathways-link:hover {
    color: var(--color-orange);
}

body .pathways-link:hover .link-icon svg path {
    stroke: var(--color-orange);
}

body .pathways-link:hover .link-icon svg {
    transform: rotate(45deg);
}

.pathways-description {
    flex-grow: 1;
}

@media (min-width: 3000px) {
    .pathways-section-bottom-shape {
        height: 100%;
    }

    .pathways-section-bottom-shape img {
        object-position: bottom;
        height: 100%;
    }
}

@media (max-width: 1600px) {
    .pathways-to-growth-section {
        padding: 100px 0 320px 0;
    }

    .pathways-grid {
        padding-block-start: 25px;
    }
}

@media (max-width: 1440px) {
    .pathways-to-growth-section {
        padding: 80px 0 310px 0;
    }

    .pathways-grid {
        padding-block-start: 10px;
    }
}

@media (max-width: 1360px) {
    .pathways-to-growth-section {
        padding: 70px 0 280px 0;
    }

    .pathways-card {
        padding: 20px;
    }

    .pathways-icon {
        margin-block-end: 24px;
    }
}

/* ============================
   LARGE SCREENS (≤ 1200px)
============================ */
@media (max-width: 1200px) {
    .pathways-to-growth-section {
        padding: 50px 0 170px 0;
    }

    .pathways-card {
        width: calc((100% - 64px) / 3);
    }
}

/* ============================
   TABLET (≤ 992px)
============================ */
@media (max-width: 992px) {
    .pathways-grid {
        gap: 16px;
        padding: 0;
    }

    .pathways-card {
        width: calc((100% - 32px) / 3);
    }

    .pathways-title br {
        display: none;
    }

    .pathways-description br {
        display: none;
    }

    .pathways-to-growth-section {
        padding: 50px 0 110px 0;
    }

    .pathways-title {
        margin: 0 0 15px 0;
    }
}

@media (max-width: 768px) {
    .pathways-card {
        width: calc((100% - 16px) / 2);
    }
}

@media (max-width: 640px) {
    .pathways-to-growth-section {
        padding: 40px 0 140px 0;
    }

    .pathways-section-top-shape img {
        height: 26px;
    }

    .pathways-section-top-shape {
        top: -16px;
    }

    .pathways-section-title {
        letter-spacing: -0.64px;
        margin: 0 0 30px 0;
    }

    .pathways-card {
        width: calc((100% - 22px) / 2);
        padding: 0;
        border: 0;
    }

    .pathways-to-growth-section .wrapper {
        padding: 0 11px;
    }

    .pathways-grid {
        gap: 22px;
    }

    .pathways-icon {
        margin-block-end: 18px;
    }

    .pathways-title {
        margin: 0 0 11px 0;
        font-size: 20px;
    }

    .pathways-link {
        margin: 7px 0 0 0;
    }

    .pathways-description {
        letter-spacing: 0.32px;
    }

    .pathways-card:hover {
        box-shadow: unset;
        background-color: transparent;
        border-color: unset;
    }


    .pathways-section-bottom-shape-mobile {
        height: 30%;
        bottom: 0;
        display: flex;
    }

    .pathways-section-bottom-shape-mobile img {
        height: 100%;
        width: 100%;
        margin-top: auto;
        display: block;
    }

}