/**
 * Treatment Center CTA Component Styles
 * 
 * Based on filterable components styling
 */

.treatment-center-cta {
    background-color: #000;
    color: #fff;
    
    & .treatment-center-cta-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    /* Treatment Center CTA Column */
    & .treatment-center-cta-column {
        position: relative;
        overflow: hidden;
        padding: var(--spacing-md);
        background: linear-gradient(to bottom, #000000 0%, #181818 100%);
        border-radius: var(--border-radius-secondary);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        
        & .card-content {
            height: 100%;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: var(--spacing-md);
        }
        
        & .location-icon {
            width: 47px;
            height: 50px;
          
            
            & img {
                width: 100%;
                
            }
        }
        
        & h2 {
            text-align: center;
            margin-bottom: var(--spacing-sm);
            color: #ffffff;
            font-family: var(--font-heading-primary);
            text-transform: uppercase;
            font-weight: 700;
            font-size: 1.8rem;
            line-height: 1.2;
            margin-top: calc(var(--spacing-md) + var(--spacing-sm));
        }
        
        & .cta-button-container {
            display: flex;
            justify-content: center;
            margin-top: var(--spacing-xs);
            
            & a.btn-outline-white {
                display: inline-block;
                padding: 7px;
                border: 2px solid #fff;
                border-radius: 4px;
                color: #fff;
                text-decoration: none;
                font-weight: 700;
                font-family: var(--font-heading-primary);
                text-transform: uppercase;
                transition: all 0.3s ease;
                min-width: 150px;
                text-align: center;
                
                &:hover {
                    background-color: #fff;
                    color: #000;
                }
            }
        }
    }
    
    /* Information Links Column */
    & .information-links-column {
        position: relative;
        overflow: hidden;
        padding: var(--spacing-md);
        
        & .card-content {
            height: 100%;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        
        & h3 {
            margin-bottom: var(--spacing-sm);
            color: #ffffff;
            font-family: var(--font-heading-primary);
            font-weight: 700;
            margin-bottom: var(--spacing-md);
        }
        
        & ul.external-links {
            list-style: none;
            padding: 0;
            margin: 0px;
            
            & li {
                margin-bottom: var(--spacing-xs);
                padding: 0px;

                &::before {
                  display:none;
                }
            }
        }
        
        & p {
            line-height: 1.5;
        }
        
        & .external-link {
            &:hover {
                text-decoration: none;
            }
        }
    }
    
    /* Responsive styles */
    @media (max-width: 768px) {
        & .treatment-center-cta-wrapper {
            grid-template-columns: 1fr;
        }
    }
}
