section.banner-section {
    padding: 40px 0 60px;
    background: #F9F9F9;
}

body section.banner-section h1 {
    font-size: 56px;
    line-height: 68px;
    text-transform: capitalize;
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.16);
}

section.banner-section p {
    font-size: var(--font-size-h6);
    margin: 24px 0;
}

section.banner-section ul.important-points {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 35px;
}

section.banner-section ul.important-points li {
    margin: 0;
    color: var(--color-primary-blue);
    position: relative;
}

section.banner-section ul.important-points li:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20px;
    width: 4px;
    height: 4px;
    background: var(--color-primary-blue);
    margin: auto;
    border-radius: 12px;
}

section.case-stydy-section {
    padding: 80px 0;
    background: #F9F9F9;
}

.case-stydy-wrapper h2 {
    text-align: center;
}

.case-stydy-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 40px auto 40px;
}

.case-stydy-col a.case-stydy-image img {
    width: 100%;
    height: 200px;
    border-radius: 14px;
    object-fit: cover;
    object-position: top;
}

.case-stydy-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0 0;
}

p.case-stydy-date,
p.case-stydy-read-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

p.case-stydy-date img,
p.case-stydy-read-time img {
    width: 16px;
    height: 16px;
}

.case-stydy-col {
    border: 1px solid #0000001A;
    border-radius: 14px;
    padding: 24px;
    background: #FFF;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    background: #FFFFFF;
}

.case-stydy-col::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.4px;
    background: linear-gradient(180deg, #1D1D1D 0%, #1292BC 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

.case-stydy-col:hover::before {
    opacity: 1;
}

.case-stydy-col:hover {
    box-shadow: 0px 14px 23.9px rgba(18, 146, 188, 0.14);
}


h3.case-stydy-title {
    margin: 24px 0 14px;
    font-size: var(--font-size-h6);
}

.case-stydy-content-wrapper .subscription-tag {
    background: #83CEDC66;
    color: var(--color-primary-blue);
}

.case-study-btn-wrapper {
    display: flex;
    gap: 2px;
    padding-top: 10px;
    border-top: 1px solid #F1F1F1;
}

.case-study-btn-wrapper a {
    font-size: var(--body-font);
    line-height: var(--line-height-heading);
    color: var(--color-primary-blue);
    text-decoration: underline;
}

a.case-stydy-content {
    margin-bottom: 24px;
    display: inline-block;
}

a.case-stydy-content p {
    color: var(--color-primary-black);
}

a.case-stydy-content p span {
    display: block;
    color: var(--color-primary-blue);
}

a.case-stydy-content p:not(:last-child) {
    margin-bottom: 16px;
}

.tag-wrapper {
    margin-bottom: 24px;
}

.tag-wrapper ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.tag-wrapper ul li {
    background: #8C8C8C1F;
    padding: 4px 12px;
    border-radius: 50px;
}

.tag-wrapper ul li a {
    color: var(--color-primary-black);
}

.cta-wrapper h2 {
    font-size: 64px;
    line-height: 1.2;
}

.cta-wrapper .button-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.cta-wrapper .button-wrapper .button-blue {
    color: var(--color-primary-blue);
    background: var(--color-white);
    font-weight: var(--font-weight-500);
}

.cta-wrapper .button-wrapper .button-white {
    color: var(--color-white);
    background: transparent;
    border-color: var(--color-white);
    font-weight: var(--font-weight-500);
}