/* Import the correct fonts globally for the entire site */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lobster&display=swap');

/* Custom Styles for South Amarillo Church of Christ */

/* ========================================= */
/* Global Article Link Styles                */
/* ========================================= */
.prose-lg a {
    color: #78584E;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.prose-lg a:hover {
    color: #8A9A8E; /* accentSage */
}

/* ========================================= */
/* Tab Pane Animations (Doctrinal Hub)       */
/* ========================================= */
.tab-pane { 
    display: none; 
}

.tab-pane.active { 
    display: block; 
    animation: fadeIn 0.4s ease-in-out; 
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}