
.pillar-hero {
    padding-block: 48px 24px;
    position: relative;
    background-color: var(--green-100);
    overflow: hidden;
}

@media (min-width: 991.8px) {
    .pillar-hero {
        padding-block: 96px 48px;
    }
}

.pillar-hero .row {
    gap: 64px;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.pillar-hero .row > * {
    padding-inline: 24px;
}

.pillar-hero .hero-body {
    width: 100%;
    max-width: 560px;
}

.pillar-hero .hero-score-wrapper {
    width: 100%;
    flex-basis: 100%;
    padding: 0;

}

.hero-text-wrapper {
    flex: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.hero-ctas a {
    width: 100%;
    flex-basis: 100%;
    text-align: center;
}

@media screen and (min-width: 575.8px) {
    .hero-ctas a {
        width: auto;
        flex-basis: auto;
    }
}

@media screen and (min-width: 991.8px) {
    .pillar-hero .hero-score-wrapper {
        width: 340px;
        flex-basis: 340px;

    }

    .hero-text-wrapper {
        flex: 1;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 24px;
    }
}


.hero-ctas {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

/* SCORE CARD */
.score-card {
    background: #fff;
    border: 1px solid var(--green-40);
    border-top: 4px solid var(--green-40);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(15, 23, 41, 0.08);
    width: 340px;
    flex-basis: 340px;
    max-width: 100%;
    margin-inline: auto;

}

.pillar-hero .small-dot {
    position: absolute;
    z-index: 2;
    display: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: red;

    /* Add color to make it visible */
}

@media (min-width: 991.8px) {
    .pillar-hero .small-dot {
        display: block;
    }
}

.pillar-hero .md-cir-animation {
    animation-name: md-circle-rotate;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.pillar-hero .md-cir-animation-2 {
    animation-name: md-circle-rotate-2;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.pillar-hero .orange-dot {
    background-color: #f37038;
}

.pillar-hero .purple-dot {
    background-color: #273269;
}

.pillar-hero .green-dot {
    background-color: #c9e265;
}

.pillar-hero .blue-dot {
    background-color: #6adcff;
}

.pillar-hero .dot-1 {
    top: -115px;
    left: 36px;
}

.pillar-hero .dot-2 {
    top: -89px;
    left: 293px;
}

.pillar-hero .dot-4 {
    top: 0;
    left: 796px;
}

.pillar-hero .dot-5 {
    top: -115px;
    right: 100px;
}

.pillar-hero .dot-6 {
    top: 0;
    right: 80px;
}

.pillar-hero .dot-7 {
    bottom: 60px;
    left: 15px;
}

.pillar-hero .dot-8 {
    bottom: 90px;
    left: 560px;
}

.pillar-hero .dot-9 {
    bottom: 70px;
    right: 15px;
}

.score-num {
    font-weight: 700;
    color: var(--green-40);
}

.score-label {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--grey-100);
    margin-bottom: 24px;
}

.score-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.score-box {
    border-radius: 10px;
    padding: 14px 8px;
    text-align: center;
}

.score-box.covered {
    background: var(--green-100);
}

.score-box.partial {
    background: var(--yellow-10);
}

.score-box.gap {
    background: var(--red-900);
}

.score-box-num {
    font-size: 24px;
    font-weight: 700;
}

.score-box.covered .score-box-num {
    color: var(--green-40);
}

.score-box.partial .score-box-num {
    color: var(--amber-100);
}

.score-box.gap .score-box-num {
    color: var(--red-100);
}

.score-box-label {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 5px;
}

.score-box.covered .score-box-label {
    color: var(--green-40);
}

.score-box.partial .score-box-label {
    color: var(--amber-100);
}

.score-box.gap .score-box-label {
    color: var(--red-100);
}

.score-method {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.65;
    color: #707070;
    text-align: left;
    border-top: 1px solid #ededed;
    padding-top: 14px;
    margin-top: 6px;
}
