.page-id-84 p{
    margin: 0px;
}

.page-id-84 .card{
    padding: 30px;
    background-color: var(--white);
    border-top: 4px solid var(--yellow);
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-id-84 .container:not(#masthead .container) {
    max-width: 1160px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;

}

/* ============Intro Section============*/
.intro-part {
    padding-left: 20px;
    padding-right: 20px;
}
.intro-part .container {
    padding: 110px 0px 60px 0px;
}

.buzz-intro {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 42px;
}
.buzz-intro::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 120px;      
  height: 4px;      
  background-color: var(--yellow); 
}

.buzz-intro h1{
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-montserrat);
    color: var(--white);
    text-transform: capitalize;
}

.buzz-intro p{
    font-family: var(--font-montserrat);
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
     line-height: 1;
}

/* ==========Featured Card Section========== */

.featured-buzz .container {
    padding: 48px 0px 34px 0px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.card-heading{
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-montserrat);
    color: var(--yellow);
    text-transform: capitalize;
    line-height: 1;
}

.featured-cards {
    display: grid;
    grid-template-columns: 31fr 25fr;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

.featured-cards .card{
    min-height: 320px;
    height: 100%;
}

.card-heading-part {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-heading-part p{
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    font-family: var(--font-montserrat);
}
.card-heading-part h3{
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-montserrat);
}
.first-heading{
    max-width: 447px;
    width: 100%;
}

.card-describe{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.card-describe p{
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-montserrat);
}

.sub-text{
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-montserrat);
    transition: all 0.2s linear;
}

.sub-text:hover{
    opacity: 0.6;
}

/* ===========Second Card Section=========== */
.more-buzz .container{
    padding: 34px 0px 34px 0px;
}
.more-buzz .card{
    min-height: 260px;
    height: 100%;
}

.more-buzz .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.more-heading-part{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.more-heading-part h4,
.social-buzz h4{
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-montserrat);
    max-width: 330px;
    width: 100%;
}

.other-info-button{
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-montserrat);
    text-decoration: none;
}

.more-describe {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========Social buzz section===== */
.social-buzz .cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.social-buzz .card{
    min-height: 200px;
    height: 100%;
}

.social-buzz .container{
    padding: 46px 0px 80px 0px;
}

.social-buzz small{
    font-size: 10px;
    font-weight: 400;
    font-family: var(--font-montserrat);
    color: #7A7A7A;
}

.social-heading-part{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-describe{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/*=========== Buzz CTA section ==========*/
.buzz-cta-section{
    background-color: var(--yellow);
    min-height: 400px;
    height: 100%;
    color: #000;
    padding: 80px 0px;
}

.buzz-cta-section .container{
    align-items: center;
    gap: 38px;
}

.buzz-cta-section .cta-btn{
    margin: 0px;
    border-radius: 50px;
    text-transform: uppercase;
    padding: 15px 30px;
    border: 1px solid #000;
}

.buzz-cta-button-part{
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.buzz-cta-section h2{
    font-size: 48px;
    font-family: var(--font-montserrat);
    font-weight: 700;
    text-align: center;
}

.buzz-cta-section p{
    font-size: 18px;
    font-family: var(--font-montserrat);
    font-weight: 400;
    text-align: center;
}

.buzz-cta-button-part p{
    font-size: 13px;
    font-family: var(--font-montserrat);
    font-weight: 400;
    text-align: center;
}

/* ==========Responsive design=========== */
/* 1200px and below */
@media screen and (max-width: 1200px) {
  .buzz-card-section .container {
    padding: 40px 20px;
  }

  .featured-buzz .container,
  .more-buzz .container,
  .social-buzz .container{
    padding-top: 50px;
  }
  .intro-part .container{
    padding-top: 80px !important;
  }

   .social-buzz .cards-grid {
     margin-bottom: 50px;
  }

  .featured-cards {
    gap: 24px;
  }

  .more-buzz .cards-grid {
    gap: 24px;
  }

  .social-buzz .cards-grid {
       gap: 24px;
    }
}


@media screen and (max-width: 998px) {
    .featured-cards {
        grid-template-columns: 1fr 1fr;
    }

    .more-buzz .cards-grid {
        grid-template-columns: 1fr 1fr;
    }


    .buzz-cta-section {
        min-height: 100%;
        padding: 50px 0px;
    }
}


@media screen and (max-width: 767px) {
    .intro-part .container {
        padding-top: 40px !important;
        padding-bottom: 20px !important;
    }
    .page-id-84 .container:not(#masthead .container) {
        gap: 30px;
    }

    .featured-cards,
    .featured-cards:nth-child(even),
    .more-buzz .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .social-buzz .cards-grid {
        grid-template-columns: 1fr;
        margin-bottom: 50px;
    }
    .buzz-intro {
        gap: 24px;
    }

    .social-buzz .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .buzz-intro::before {
        width: 75px;
    }

    .buzz-intro h1 {
        font-size: 40px;
    }

    .buzz-intro p {
        font-size: 16px;
    }

    .card-heading {
        font-size: 24px;
    }

    .card-heading-part h3 {
        font-size: 20px;
    }

    .more-heading-part h4,
    .social-buzz h4 {
        font-size: 18px;
    }

    .buzz-cta-section h2 {
        font-size: 30px;
    }

    .buzz-cta-section p {
        font-size: 16px;
    }

    .buzz-card-section {
        gap: 30px;
    }

}