/* Wrapper */
.event-card {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    gap: 10px;

    width: 100%;
    height: fit-content;
}

.event-card__content-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    gap: 20px;

    height: fit-content;
    width: 100%;
}

.event-card:not(:last-of-type) .event-card__content-wrapper {
    padding-bottom: 16px;
    border-bottom: #D9D9D9 1px solid;
}

/* Dot */
.event-card__dot-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 7.5px 7.5px 7.5px 7.5px;

    width: fit-content;
    height: 100%;
}

.event-card__dot {
    width: 7px;
    height: 7px;

    border-radius: 12px;

    background: #3C486B;
}

/* Content */
.event-card__content {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 2px;
}

/* Content - Header */
.event-card__header {}

.event-card__header-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;

    color: #242424;
    padding: 0px;
    margin: 0px;
}

.event-card.finish .event-card__header-title {
    opacity: 0.5;
}

/* Content - Body */
.event-card__body {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;

    width: auto;
    height: fit-content;
}

.event-card__title-link {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;

    text-decoration-line: underline;

    color: #3C486B;
}

.event-card__date {
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;

    text-transform: uppercase;

    color: rgba(36, 36, 36, 0.5);
}

.event-card.finish .event-card__date {
    color: rgba(36, 36, 36, 0.5);
    opacity: 0.5;
}

/* Content - Nav */
.event-card__nav {
    width: fit-content;
    height: 100%;

    margin-left: auto;
}

/* Content - Nav - Status */
.event-card__nav-status {
    display: none;

    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 8px;

    background: #B5B5B5;
    border-radius: 5px;

    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;

    color: #FFFFFF;
}

/* Content - Nav - Checkbox */
.event-card__nav-field {
    display: none;

    position: static;
}

.event-card.finish .event-card__nav-status {
    display: ruby-text;
}

.event-card:not(.finish) .event-card__nav-field {
    display: flex;
}
