/* GHTC Home More Details CTA Button */
.ghtc-home-cta-button,
.home .feature-card a.ghtc-home-cta-button,
.ghtc-home-card a.ghtc-home-cta-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    padding: 11px 22px;
    min-height: 42px;
    border-radius: 999px;
    background: #071b43;
    color: #ffffff !important;
    border: 1px solid #071b43;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    letter-spacing: .1px;
    box-shadow: 0 12px 26px rgba(7, 27, 67, .18);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.ghtc-home-cta-button::after {
    content: "→";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    font-size: 14px;
    line-height: 1;
    transition: transform .22s ease, background .22s ease;
}

.ghtc-home-cta-button:hover {
    background: #e7193f;
    border-color: #e7193f;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(231, 25, 63, .28);
}

.ghtc-home-cta-button:hover::after {
    transform: translateX(3px);
    background: rgba(255,255,255,.22);
}

.ghtc-home-cta-button:focus {
    outline: 3px solid rgba(231,25,63,.22);
    outline-offset: 3px;
}

@media (max-width: 575px) {
    .ghtc-home-cta-button {
        width: 100%;
        max-width: 210px;
        padding: 12px 18px;
    }
}
