:root {
    --ut-orange: #FF8200; 
    --ut-blue: #00263E;   
    --ut-light-blue: #004b7a;
    --ut-green: #4a773c;
    --text-dark: #333;
    --bg-light: #f4f4f4;
    --ut-smokey: #58595B; 
    --ut-light-grey: #F6F6F6;
    --text-main: #333333;
    --border: #E0E0E0;
    --light-bg: #F9F7F2;
    --slate: #333d47;
    --subText: #4f4f4fda;
}


.the-buzz .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 150px;
    position: relative;
    background-color: #efefef;
    border-radius: 10px;
    justify-items: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    padding: 0px;
    margin: 0px;
}

.the-buzz .subtitle {
    font-size: 1.5rem;
    color: #555;
    margin: 0 auto;
    line-height: 1.2;
    font-weight: 400;
}

.section-title span {
    font-weight: normal;
    font-size: 1.2rem;
    color: #666;
    margin-left: 10px;
}

.buzz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px auto;
}
.buzz-link {
    text-decoration: none;
    border-bottom: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.buzz-link:hover {
    text-decoration: none;
    border-bottom: none;
    transform: scale(1.025);
}

a.buzz-link:visited {
    text-decoration: none;
}

.buzz-card {
    position: relative;
    height: 270px; 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-top: 15px solid #FF8200; 
    border-bottom: 15px solid #FF8200;
    border-radius: 25px;
    background-color: var(--slate);
}


.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.5s ease;
    z-index: 1;
    opacity: 0.85;
    
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
    background-color: #000; 
    opacity: 0.5; 
    transition: opacity 0.3s ease;
}


.buzz-card.orange .card-overlay { background-color: var(--ut-orange); }
.buzz-card.blue .card-overlay { background-color: var(--ut-blue); }
.buzz-card.green .card-overlay { background-color: var(--ut-green); }
.buzz-card.slate .card-overlay { background-color: var(--slate); }
.buzz-card.black .card-overlay { background-color: black; }

/* .buzz-card:hover .card-overlay {
    opacity: 0.80; 
} */

.card-text {
    position: relative;
    width: 80%;
    z-index: 3;
    color: white;
    font-weight: 800;
    font-size: 1.8rem;
    text-align: center;
    padding: 15px 40px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3); 
}