
.breadcrumb {
    padding: 20px 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-secondary);
}

.breadcrumb a:hover {
    text-decoration: underline;
}
.events-hero {
    position: relative;
    max-width: 100%;
    color: white;
    font-family: var(--font-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: 30% top;
    height: 60vh;
    max-height : 488px;
    margin-bottom : 3.5rem;
}

.events-hero .overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.events-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    max-width : 100%;
    padding-bottom : 3rem;
}

.events-hero .breadcrumb {
    padding-left: 5.56%;
    /* margin-bottom: 3rem; */
    font-size: 1.4rem;
    max-width: 100%;
    text-align: left;
    position: static;
    align-items: start;
}

.events-hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin: 0 0 1rem 0;
    font-family: var(--font-primary);
    line-height : 1.2;
}

.events-hero h1 span {
    color: var(--clr-yellow);
}

.events-hero p {
    max-width: 100%;
    margin-inline: 5.56%;
    font-size: 1.4rem;
    line-height :1.2;
    text-align : justify;
}

.events-page-content {
    font-family: var(--font-secondary);
}

.events-section{

    padding-inline : 0.5rem;
    padding-bottom : 1rem;
 }

.events-title {
  font-weight: 700;
  font-family: var(--font-primary);
  font-size: 4rem;
  text-align: left;
  margin : 0;
  padding-left :5.56%;
}


.highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    margin-top: auto;
    align-items: center;
}

.highlight-tags .tag {
    background: #ccc; /* Default tag color */
    color: #111;
    padding: 0.25em 1em;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.highlight-link {
    color: white;
    font-size: clamp(0.4rem, 2vw, 1rem);
    font-weight: bold;
    text-decoration: underline;
}

.events-desc{
    color : black;
    font : 0.5rem;
    font-family: var(--font-secondary);
    line-height: 1;
    letter-spacing: 0.04rem;
    font-weight : 500;
}

@media(max-width : 1299px){
    .events-title{
        margin : 0;
        font-size : 2.5rem;
    }
}

@media(max-width : 768px){
    .events-title{
        margin : 0;
        font-size : 2rem;
        padding-left : 4.10%;
    }
    .events-hero {
        aspect-ratio: 16 / 9;
        min-height: 332px; 
        max-height: 480px; 
        margin : 0;
        height : unset;
        margin-bottom : 2.5rem;
    }
    .events-hero h1{
        line-height : 1;
        font-size : 2.1rem;
    }

    .events-hero__content{
        padding-bottom : 0;
        gap : 0;
    }
     .events-hero .breadcrumb {
        text-align: left;                     
        margin-bottom: 2rem;
        font-size : 1rem;
    }
    .events-hero p{          
        font-size : 1rem ; 
        line-height : 1.2;                                                                                 
    }   
}

/* Medium screens ≤ 600px */
@media (max-width: 600px) {
  .events-title {
    margin-bottom : 0;
  }
  .events-hero h1{
        line-height : 0.8;
        font-size : 2rem;
    }
}


/* Small screens ≤ 500px */
@media (max-width: 500px) {
  

    .events-hero h1{
        line-height : 0.8;
        font-size : 1.8rem;
    }

    .events-hero p {
        font-size: 0.8rem;
        line-height: 1;
    }
    .events-title {
        font-size: clamp(1.4rem, 4vw, 2rem);
        padding-left: 4.10%;
    }

     .events-hero .breadcrumb {
        text-align: left;                     
        margin-bottom: 1.5rem;
        font-size : 0.8rem;
    }
}


/* Extra small phones ≤ 410px */
@media (max-width: 410px) {
    .events-hero h1{
        line-height : 0.8;
        font-size : 1.6rem;
    }
  .events-title {
    font-size: clamp(1rem, 4vw, 1.5rem);
    padding-inline: 4.10%;
  }
}

/* Phones 360px – 410px */
@media (min-width: 360px) and (max-width: 410px) {
  .events-title {
    font-size: clamp(0.95rem, 3.5vw, 1.4rem);
    padding-inline: 4.10%;
  }
  .events-hero h1{
        line-height : 0.8;
        font-size : 1.5rem;
    }
}

.load-more-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    font-family: var(--font-primary, Arial, sans-serif);
    margin: 0 auto;
}

.load-more-btn:hover {
    background-color: var(--clr-yellow, #f5a623);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.load-more-btn:active {
    transform: translateY(0);
}

.end-of-carousel.hidden {
    display: none;
}