/* Three Column Section Styles */
.cite-three-col-section {
    background: var(--pure-white);
}

.cite-three-col-section .cite-three-col-headline {
    font-family: var(--font-heading);
    font-size: 50px;
    color: var(--cite-dark);
    margin-bottom: 3rem;
}

.cite-three-col-section .cite-three-col-headline-highlight {
    color: var(--cite-blue);
}

.cite-three-col-section .cite-three-col-card {
    background: var(--pure-white);
    /* padding: 2.5rem; */
    height: 100%;
    position: relative;
}

.cite-three-col-section .cite-three-col-card__header {
    margin-bottom: 1.5rem;
}

.cite-three-col-section .cite-three-col-card__title {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: bold;
    color: var(--cite-blue);
    margin: 0;
    line-height: 1.2;
}

.cite-three-col-section .cite-three-col-card__body {
    flex: 1;
}

.cite-three-col-section .cite-three-col-card__content {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--cite-dark);
}

.cite-three-col-section .cite-three-col-card__content p {
    margin-bottom: 1rem;
}

.cite-three-col-section .cite-three-col-card__content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.cite-three-col-section .cite-three-col-card__content li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.cite-three-col-section .cite-three-col-card__content li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 18px;
    color: var(--cite-dark);
}

.cite-three-col-section .cite-three-col-card__content strong {
    font-weight: 600;
}

.cite-three-col-section .cite-three-col-cta {
    margin-top: 1rem;
}

.cite-three-col-section .cite-three-col-cta__button {
    color: var(--three-col-button-text-color, #ffffff);
    font-weight: 600;
    font-size: 17px;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    background: var(--three-col-button-color, var(--cite-blue));
    overflow: hidden;
    border: none;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    text-decoration: none;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.cite-three-col-section .cite-three-col-cta__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, .3) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.75s;
    opacity: 0;
}

.cite-three-col-section .cite-three-col-cta__button:hover::before {
    animation: shine 0.75s;
    opacity: 1;
}

.cite-three-col-section .cite-three-col-cta__button:hover {
    color: var(--three-col-button-text-color, #ffffff);
    background-color: var(--three-col-button-color, var(--cite-blue));
    transform: translateY(-2px);
    /* text-decoration: underline; */
}

/* Three Column Section Responsive */
@media (max-width: 1024px) {
    .cite-three-col-section .cite-three-col-headline {
        font-size: 42px;
    }
    
    .cite-three-col-section .cite-three-col-card {
        padding: 0rem;
    }
    
    .cite-three-col-section .cite-three-col-card__title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .cite-three-col-section .cite-three-col-headline {
        font-size: 36px;
        margin-bottom: 2rem;
    }
    
    .cite-three-col-section .cite-three-col-card {
        padding: 1rem 1rem 0rem 1rem;
        margin-bottom: 0rem;
    }
    
    .cite-three-col-section .cite-three-col-card__title {
        font-size: 22px;
    }
    
    .cite-three-col-section .cite-three-col-card__content {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cite-three-col-section .cite-three-col-headline {
        font-size: 28px;
    }
    
    .cite-three-col-section .cite-three-col-card {
        padding: 0rem;
    }
    
    .cite-three-col-section .cite-three-col-card__title {
        font-size: 20px;
    }
    
    .cite-three-col-section .cite-three-col-card__content {
        font-size: 14px;
    }
    
    .cite-three-col-section .cite-three-col-card__content li {
        margin-bottom: 0.75rem;
    }
}