.footer-event {
    position: relative;
    width: 100%;
    background-color: #000000;
}

.footer-event__top-line {
    width: 100%;
    height: 1px;
    background-color: #00A69C;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.footer-event__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: clamp(24px, 2.33vw, 60px);
    padding-right: clamp(24px, 2.33vw, 60px);
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

@media (min-width: 1920px) {
    .footer-event__inner {
        padding-left: 60px;
        padding-right: 60px;
    }
}

.footer-event__content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-event__text {
    font-family: "Lexend", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 0;
}

.footer-event__text p {
    margin: 0;
}

.footer-event__text a {
    color: inherit;
    text-decoration: underline;
}

.footer-event__separator {
    position: relative;
    width: 30px;
    height: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-event__separator-line {
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: #FFFFFF;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-event__social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 20px;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.footer-event__social-icon:hover {
    opacity: 0.8;
}

.footer-event__social-icon-image {
    width: auto;
    height: 20px;
    object-fit: contain;
    display: block;
}

/* Empty State */
.footer-event-empty-state {
    padding: 40px 20px;
    text-align: center;
    min-height: 100px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.03);
    border: 2px dashed rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin: 20px 0;
}

.footer-event-empty-title {
    color: rgba(0, 0, 0, 0.6) !important;
    font-family: Lexend, sans-serif;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin: 0 0 8px 0 !important;
}

.footer-event-empty-click {
    color: rgba(0, 0, 0, 0.4) !important;
    font-family: Lexend, sans-serif;
    font-size: 14px !important;
    font-weight: 400 !important;
    margin: 0 !important;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-event__inner {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .footer-event__content {
        gap: 12px;
    }
    
    .footer-event__text {
        font-size: 12px;
    }
}

