: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 0px 10px 0px;
}

.the-buzz .subtitle {
    font-size: 1.5rem;
    color: #555;
    margin: 0 auto;
    line-height: 1.2;
    font-weight: 400;
    text-align: center;
}

.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;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3); 
}

@media screen and (min-width: 1600px), (max-width: 2300px) { }

@media screen and (max-width: 2100px) { }

@media screen and (min-width: 1801px), (max-width: 2099px) { }

@media screen and (max-width: 1800px) { }

@media screen and (max-width: 1650px) { }

@media screen and (max-width: 1500px) { }

@media screen and (max-width: 1400px) {
    .the-buzz { 
        width: 100%;
        margin: 0 auto;
    }
    .the-buzz .container { padding: 60px;} 
}

@media screen and (max-width: 1200px) {
    .buzz-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .buzz-grid > :nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        width: 50%;
    }

 }

@media (max-width: 900px) {
    .the-buzz .container {
        padding: 40px 60px;
    }
    .buzz-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .buzz-grid > :nth-child(3) {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        width: 100%;
    }
}

@media (max-width: 599px) {
    .the-buzz .container {
        padding: 40px 10px;
    }
    .buzz-grid {
        margin: 30px 10px;
        width: 95%;
    }
    h3.subtitle {
        font-size: 1.2rem !important;
    }
    h4.card-text {
        font-size: 1.3rem !important;
        padding: 10px 20px !important;
    }
}

@media (max-width: 499px) { }

@media (max-width: 399px) {
    h3.subtitle {
        font-size: 1rem !important;
    }
    h4.card-text {
        font-size: 1.15rem !important;
        padding: 10px 10px !important;
    }
}