.homeevents .sectionHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.homeevents .sectionTitle {
    font-family: "Metropolis Semi Bold";
    font-size: 20px;
    letter-spacing: 0.2px;
    color: #1a1a2e;
}

.homeevents .seeAllLink {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 17px;
    font-family: "Metropolis Semi Bold";
    letter-spacing: 0.16px;
    color: #1a1a2e;
    cursor: pointer;
}

.homeevents .seeAllLink:hover {
    opacity: 0.8;
}

.homeevents .seeAllLink .arrowIcon {
    width: 6px;
    height: 6px;
    border-right: 2px solid #1a1a2e;
    border-bottom: 2px solid #1a1a2e;
    transform: rotate(-45deg);
}

.homeevents .skeletonContainer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.homeevents .eventsContainer {
    margin-top: 4px;
}

.homeevents .eventsContainer .eventsstatussection .challengesCards {
    padding-inline: 0;
}

.homeevents .sectionError {
    text-align: center;
    padding: 24px 16px;
    color: #6b7280;
    font-size: 14px;
}

/* DARK MODE */
.dark .homeevents .sectionTitle {
    color: rgba(255, 255, 255, 0.87);
}

.dark .homeevents .seeAllLink {
    color: white;
}

.dark .homeevents .seeAllLink .arrowIcon {
    border-right-color: white;
    border-bottom-color: white;
}

.dark .homeevents .sectionError {
    color: rgba(255, 255, 255, 0.6);
}

.homeevents .skeletonContainer.hide,
.homeevents .eventsContainer.hide,
.homeevents .sectionError.hide {
    display: none;
}
