.events-content {
    display: flex;
    flex-direction: column;
    gap: calc(var(--default-spacing)*3);
}

.event-list {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    /* display: grid; */
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    gap: calc(var(--default-spacing)*1);

}

.event {
    max-width: 500px;
    border: 3px solid var(--color-text);
    border-radius: calc(var(--default-spacing));

    display: flex;
    flex-direction: column;
}

.event-header {
    width: auto;
    padding: calc(var(--default-spacing)) calc(var(--default-spacing)*2);
    display: flex;
    flex-wrap: nowrap;
    justify-content: end;
    text-transform: uppercase
}

.event-body {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--default-spacing)*5);
    text-align: center;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.event-footer {
    width: auto;
    text-align: center;
    text-transform: uppercase;
}

.event-footer-date {
    margin: 0 calc(var(--default-spacing)*2);
    padding: calc(var(--default-spacing)*2);
    border-style: dotted none;
    border-width: 4px;
}

.event-footer-address {
    height: auto;
    margin: 0 calc(var(--default-spacing)*2);
    padding: calc(var(--default-spacing)*2);
}

.section {
    margin: 0 20px;
}

.section-part {
    margin-left: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-text {
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    gap: 20px;
}

.timeline {
    position: relative;
    width: 20px;
}

.timeline.top::before {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--color-yellow);
    z-index: 0;
}

.timeline.bottom::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 50%;
    left: 50%;
    width: 2px;
    background: var(--color-yellow);
    z-index: 0;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--color-yellow);
    transform: translateX(-50%);
    z-index: 0;
}

.circle {
    width: 14px;
    height: 14px;
    background: var(--color-yellow);
    border-radius: 50%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}


.vip-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.vip-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.vip-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.vip-img {
    border-radius: 6px;
}


.svg-width-64 {
    width: 64px;
}
.svg-height-64 {
    height: 64px;
}
.svg-width-54 {
    width: 54px;
}

@media (max-width: 768px) {
    .section {
        margin: 0 0px;
    }

    .section-part {
        margin-left: 30px;
    }

    .location-text {
        gap: 10px;
    }

    .timeline {
        width: 10px;
    }

    .timeline.top::before,
    .timeline.bottom::before,
    .timeline::before {
        width: 1px;
    }

    .circle {
        width: 8px;
        height: 8px;
    }

    .svg-width-64 {
        width: 34px;
    }

    .svg-height-64 {
        height: 34px;
    }
    .svg-width-54 {
        width: 26px;
    }

    .event-list {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-content: center;
    }

    .vip-img {
        width: 200px;
    }
}

@media (max-width: 500px) {
    .svg-width-64 {
        width: 24px;
    }
    .svg-height-64 {
        min-height: 60px;
    }
    .svg-width-54 {
        width: 18px;
    }

    .vip-img {
        width: 150px;
    }
}


@media (max-width: 370px) {
    .section-part {
        margin-left: 10px;
    }
    .vip-img {
        width: 100px;
    }
}