.container {
    padding-right: 15px !important;
    padding-left: 0 !important;
}
.upcoming-events-section {
    padding: 4rem 0;
    background-color: #f8f9fa; 
}

.section-title {
    text-align: left;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.section-title .text-orange {
    color: #df7a00;
}

.event-card-link {
    text-decoration: none;
    color: inherit;
}

.event-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid transparent;
    height: 100%;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none !important;
    color: #df7a00;
}
a:hover {
    text-decoration: none !important;
}

.event-date {
    background-color: #df7a00;
    color: #fff;
    text-align: center;
    padding: 1rem 1.25rem;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #d97d2d;
}

.event-date .day {
    display: block;
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1.1;
}

.event-date .month {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
}

.event-details {
    padding: 1rem;
    overflow: hidden;
}

.event-title {
    font-size: 0.9rem;
    font-weight: bold;
    margin: 0;
  {#white-space: nowrap;#}
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 37px;
}

.event-location {
    font-size: 0.87rem;
    color: #6c757d;
    padding-top: 15px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.see-all-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.see-all-link:hover {
    color: #d97d2d;
    text-decoration: none;
    border-bottom-color: #d97d2d;
}
@media (min-width: 1200px) {
    .container {
        max-width: 1180px !important;
    }
}
@media (max-width: 991.98px) {
    .container {
        padding-right: 5px !important;
        padding-left: 5px !important;
    }
  .section-title {
    padding: 0 5px;
  }
}