/* Events Page Specific Styles */

/* Events Hero Section */
.events-hero-section {
    background: linear-gradient(135deg, var(--abbvie-blue) 0%, var(--abbvie-dark-blue) 100%);
    color: white;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-top-left-radius: 50px;
    margin: 0 10%;
}

.events-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    border-top-left-radius: 50px;
    pointer-events: none;
    z-index: 1;
}

#eventsHeroVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 50px;
}

.events-hero-section .video-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.events-hero-section .video-controls .btn {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.events-hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.events-hero-section .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.events-hero-section .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--abbvie-blue), var(--abbvie-dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.section-icon i {
    font-size: 2.5rem;
    color: white;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

/* Event Categories */
.event-category {
    margin-bottom: 4rem;
}

.event-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--abbvie-blue);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--abbvie-blue);
    display: inline-block;
}

.event-category h3 i {
    margin-right: 0.5rem;
}

/* Event Cards */
.event-card {
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.event-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            #f8f9fa 0px,
            #f8f9fa 10px,
            #e9ecef 10px,
            #e9ecef 20px
        );
    background-size: 40px 40px;
    transition: all 0.3s ease;
}



.image-placeholder span {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--abbvie-blue);
    text-align: center;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--abbvie-blue), var(--abbvie-dark-blue));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(100%);
    transition: all 0.4s ease;
    opacity: 0;
}

.event-card:hover .event-content {
    transform: translateY(0);
    opacity: 1;
}

.event-card:hover .image-placeholder {
    filter: brightness(0.4);
}

.event-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
}

.event-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Learning Section */
.learning-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Program Highlight */
.program-highlight {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.program-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--abbvie-blue);
    margin-bottom: 1rem;
}

.program-content .lead {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.program-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.feature-item i {
    color: var(--abbvie-blue);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.program-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .program-image img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 576px) {
    .program-image img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

/* Training Cards */
.training-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.training-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--abbvie-blue), var(--abbvie-dark-blue));
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.training-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--abbvie-blue), var(--abbvie-dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.training-icon i {
    font-size: 2rem;
    color: white;
}

.training-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--abbvie-blue);
    margin-bottom: 1rem;
}

.training-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.training-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.training-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.training-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--abbvie-blue);
    font-weight: bold;
}

/* Training Statistics */
.training-stats {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-card {
    padding: 1.5rem;
    background: rgba(255, 102, 0, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--abbvie-blue);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .events-hero-section {
        margin: 0 5%;
    }
}

@media (max-width: 768px) {
    .events-hero-section {
        height: 60vh;
        margin: 0 2%;
        border-top-left-radius: 30px;
    }
    
    .events-hero-section::after {
        border-top-left-radius: 30px;
    }
    
    #eventsHeroVideo {
        border-top-left-radius: 30px;
    }
    
    .events-hero-section .hero-title {
        font-size: 2.5rem;
    }
    
    .events-hero-section .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .event-category h3 {
        font-size: 1.6rem;
    }
    
    .program-highlight {
        padding: 2rem;
    }
    
    .program-features {
        grid-template-columns: 1fr;
    }
    
    .training-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .events-hero-section {
        height: 50vh;
        margin: 0 1%;
        border-top-left-radius: 20px;
    }
    
    .events-hero-section::after {
        border-top-left-radius: 20px;
    }
    
    #eventsHeroVideo {
        border-top-left-radius: 20px;
    }
    
    .events-hero-section .hero-title {
        font-size: 2rem;
    }
    
    .events-hero-section .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-icon {
        width: 80px;
        height: 80px;
    }
    
    .section-icon i {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .event-category h3 {
        font-size: 1.4rem;
    }
    
    .event-image {
        height: 150px;
    }
    
    .image-placeholder {
        margin: 15px;
    }
    
    .image-placeholder i {
        font-size: 2rem;
    }
    
    .image-placeholder span {
        font-size: 0.9rem;
    }
    
    .event-content {
        padding: 1.2rem;
    }
    
    .program-highlight {
        padding: 1.5rem;
    }
    
    .program-content h3 {
        font-size: 1.8rem;
    }
    
    .training-icon {
        width: 60px;
        height: 60px;
    }
    
    .training-icon i {
        font-size: 1.5rem;
    }
    
    .training-content h4 {
        font-size: 1.2rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .events-hero-section .video-controls {
        top: 15px;
        right: 15px;
    }
    
    .events-hero-section .video-controls .btn {
        width: 40px;
        height: 40px;
    }
}

/* Contact Page Styles */
.contact-hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 10%;
    border-top-left-radius: 50px;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 50px;
}

.contact-hero-section .video-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.contact-hero-section .video-controls .btn {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(255,102,0,0.3) 100%);
    border-top-left-radius: 50px;
}

.contact-hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--abbvie-blue);
}

.locations-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.location-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--abbvie-blue), var(--abbvie-dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.location-icon i {
    font-size: 1.5rem;
    color: white;
}

.location-card h5 {
    color: var(--abbvie-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.location-details p {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.location-details i {
    color: var(--abbvie-blue);
    width: 20px;
    margin-right: 0.5rem;
}

.contact-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.contact-image:hover img {
    transform: scale(1.05);
}

/* Contact Page Responsive Styles */
@media (max-width: 1400px) {
    .contact-hero-section {
        margin: 0 8%;
    }
}

@media (max-width: 1200px) {
    .contact-hero-section {
        margin: 0 5%;
    }
    
    .contact-hero-section .hero-title {
        font-size: 3rem;
    }
    
    .location-card {
        padding: 1.8rem;
    }
}

@media (max-width: 992px) {
    .contact-hero-section {
        height: 55vh;
        margin: 0 3%;
        border-top-left-radius: 40px;
    }
    
    .hero-bg-video {
        border-top-left-radius: 40px;
    }
    
    .hero-overlay {
        border-top-left-radius: 40px;
    }
    
    .contact-hero-section .hero-title {
        font-size: 2.8rem;
    }
    
    .contact-image img {
        min-height: 350px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        height: 50vh;
        margin: 0 2%;
        border-top-left-radius: 30px;
    }
    
    .hero-bg-video {
        border-top-left-radius: 30px;
    }
    
    .hero-overlay {
        border-top-left-radius: 30px;
    }
    
    .contact-hero-section .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-section .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stats .stat-item h3 {
        font-size: 2rem;
    }
    
    .contact-image img {
        min-height: 300px;
        margin-bottom: 2rem;
    }
    
    .location-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .location-icon {
        width: 50px;
        height: 50px;
    }
    
    .location-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        height: 40vh;
        margin: 0 1%;
        border-top-left-radius: 20px;
    }
    
    .hero-bg-video {
        border-top-left-radius: 20px;
    }
    
    .hero-overlay {
        border-top-left-radius: 20px;
    }
    
    .contact-hero-section .hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-section .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-image img {
        min-height: 250px;
    }
    
    .location-card {
        padding: 1rem;
    }
    
    .contact-hero-section .video-controls {
        top: 15px;
        right: 15px;
    }
    
    .contact-hero-section .video-controls .btn {
        width: 40px;
        height: 40px;
    }
    
    .culture-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-section {
        height: 35vh;
    }
    
    .contact-hero-section .hero-title {
        font-size: 1.8rem;
    }
    
    .contact-image img {
        min-height: 200px;
    }
    
    .location-card {
        padding: 0.8rem;
    }
    
    .location-card h5 {
        font-size: 1rem;
    }
    
    .location-details p {
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    .contact-hero-section .hero-title {
        font-size: 1.6rem;
    }
    
    .contact-hero-section .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-image img {
        min-height: 180px;
    }
    
    .form-control, .form-select {
        font-size: 0.9rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .event-card:hover,
    .training-card:hover,
    .stat-card:hover {
        transform: none;
    }
    
    .image-placeholder:hover {
        transform: none;
    }
    
    .location-card:hover {
        transform: none;
    }
    
    .culture-card:hover .card-image img {
        transform: none;
    }
}
/* CSR Page Responsive Styles */
@media (max-width: 1200px) {
    .strength-card {
        padding: 1.5rem;
    }
    
    .culture-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .strength-card {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .culture-card .card-content {
        padding: 1.2rem;
    }
    
    .culture-card .card-image img {
        height: 200px;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .btn.me-3 {
        margin-right: 0 !important;
    }
}

@media (max-width: 576px) {
    .strength-card {
        padding: 1rem;
    }
    
    .strength-card h5 {
        font-size: 1.1rem;
    }
    
    .culture-card .card-image img {
        height: 180px;
    }
    
    .culture-card .card-content h4 {
        font-size: 1.2rem;
    }
    
    .about-us-section .lead {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .strength-card {
        padding: 0.8rem;
    }
    
    .culture-card .card-content {
        padding: 1rem;
    }
    
    .culture-card .card-image img {
        height: 150px;
    }
}

@media (max-width: 375px) {
    .strength-card h5 {
        font-size: 1rem;
    }
    
    .strength-card p {
        font-size: 0.9rem;
    }
    
    .culture-card .card-content h4 {
        font-size: 1.1rem;
    }
    
    .culture-card .card-content p {
        font-size: 0.9rem;
    }
}
/* Culture/Participation Card Images */
.culture-card .card-image {
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    border: none;
}

.culture-card {
    border: none;
    box-shadow: none;
}

.culture-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border: none;
}

.culture-card:hover .card-image img {
    transform: scale(1.05);
}

/* Participation Page Responsive Styles */
@media (max-width: 1200px) {
    .culture-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .culture-card .card-content {
        padding: 1.2rem;
    }
    
    .culture-card .card-image {
        height: 200px;
    }
    
    .culture-card .card-image img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .culture-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .culture-card .card-image {
        height: 180px;
    }
    
    .culture-card .card-image img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .culture-card .card-content h4 {
        font-size: 1.2rem;
    }
    
    .culture-card .card-content p {
        font-size: 0.9rem;
    }
    
    .culture-section h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .culture-card .card-content {
        padding: 1rem;
    }
    
    .culture-card .card-image {
        height: 150px;
    }
    
    .culture-card .card-image img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 375px) {
    .culture-card .card-content h4 {
        font-size: 1.1rem;
    }
    
    .culture-card .card-content p {
        font-size: 0.85rem;
    }
    
    .culture-section h2 {
        font-size: 1.4rem;
    }
}
/* Events Page Additional Responsive Styles */
@media (max-width: 1200px) {
    .event-card {
        height: 280px;
    }
    
    .program-highlight {
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .event-card {
        height: 260px;
    }
    
    .training-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .event-card {
        height: 240px;
    }
    
    .event-content {
        padding: 1.5rem;
    }
    
    .training-icon {
        width: 60px;
        height: 60px;
    }
    
    .training-icon i {
        font-size: 1.5rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .event-card {
        height: 200px;
        margin-bottom: 1.5rem;
    }
    
    .event-content {
        padding: 1.2rem;
    }
    
    .event-content h4 {
        font-size: 1.1rem;
    }
    
    .event-content p {
        font-size: 0.9rem;
    }
    
    .image-placeholder span {
        font-size: 1rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .event-card {
        height: 180px;
    }
    
    .event-content {
        padding: 1rem;
    }
    
    .training-card {
        padding: 1.2rem;
    }
}

@media (max-width: 375px) {
    .event-card {
        height: 160px;
    }
    
    .event-content h4 {
        font-size: 1rem;
    }
    
    .event-content p {
        font-size: 0.85rem;
    }
    
    .image-placeholder span {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .training-content h4 {
        font-size: 1.1rem;
    }
}
.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

/* Mobile responsive image fixes for events */
@media (max-width: 768px) {
    .event-image img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 576px) {
    .event-image img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}