.hac-three-cta-blocks-section {
    padding: 30px 0 100px;
}

.hac-three-cta-blocks-section .hac-cta-section-header {
    font-size: var(--bigHeadingFontSize);
    font-family: var(--bigHeaderFontFamily);
    line-height: var(--bigHeaderLineHeight);
    font-weight: var(--bigHeaderFontWeight);
    letter-spacing: var(--bigHeaderLetterSpacing);
    text-transform: none;
    margin-bottom: 70px;
    max-width: 800px;

}

.hac-three-cta-blocks-section .hac-cta-title {
    font-size: var(--mediumHeaderFontSize);
    font-family: var(--mediumHeaderFontFamily);
    line-height: var(--mediumHeaderLineHeight);
    font-weight: var(--mediumHeaderFontWeight);
    letter-spacing: var(--mediumHeaderLetterSpacing);
    margin: 0.25rem 0 0;
}

.hac-three-cta-blocks-section .hac-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
}

.hac-three-cta-blocks-section .hac-cta-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
}

.hac-three-cta-blocks-section .hac-cta-icon{
    margin-bottom: 10px;
}

.hac-three-cta-blocks-section .hac-cta-icon-img {
    width: auto;
    /* adjust as needed */
    height: auto;
    display: block;
}

.hac-three-cta-blocks-section .hac-cta-content p {
    margin: 0 0 0.75rem;
    font-size: var(--defaultFontSize);
    font-family: var(--defaultFontFamily);
    line-height: var(--defaultLineHeight);
    font-weight: var(--defaultFontWeight);
    letter-spacing: var(--defaultLetterSpacing);
}

.hac-three-cta-blocks-section .hac-cta-button {
   font-size: var(--buttonTextFontSize);
   font-family: var(--buttonTextFontFamily);
   line-height: var(--buttonTextLineHeight);
   font-weight: var(--buttonTextFontWeight);
   letter-spacing: var(--buttonTextLetterSpacing);
   color: var(--dark-blue); 
   padding-bottom: 3px;
   border-bottom: 2px solid var(--colourLightGreen);
   min-width: 108px;
   transition: 350ms;
position: relative;
    padding-bottom: 3px;
}

.hac-three-cta-blocks-section .hac-cta-button-wrap{
    display: flex;
    flex: 1;
    align-items: flex-end;
}

.hac-three-cta-blocks-section .hac-cta-card:first-of-type .hac-cta-title {
    max-width: 350px;
}



.hac-three-cta-blocks-section .hac-cta-button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background: var(--dark-blue);
    transition: width 350ms ease;
}

.hac-three-cta-blocks-section .hac-cta-button:hover::after {
    width: 100%;
}

@media only screen and (max-width:  1024px) {
    .hac-three-cta-blocks-section .hac-cta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width:  767px) {
    .hac-three-cta-blocks-section .hac-cta-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}