.event-wrapper {
    /* background: radial-gradient(circle, var(--sub-color-4) 0%, var(--sub-color-3) 40%); */
    background: url("../../img/recruit/pc-left-bg.png");
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

@media(max-width:992px) {
    .event-wrapper {
        padding: 0;
    }
}

.event-wrapper::before {
    content: "";
    position: absolute;
    background: url("../../img/recruit/main-bg.jpg");
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
}

.underlayer-titles {
    margin-top: 50px;
}

.underlayer-titles p {
    color: var(--txt-color-4);
}

.underlayer-titles::after {
    background: var(--txt-color-6);
}

.event-contents {
    margin-top: 100px;
    position: relative;
}

.event-content {
    border: 1px solid #FFF;
    margin: 50px 0;
}

@media(max-width:992px) {
    .event-content {
        padding: 0 15px;
    }
}

.event-content-title {
    background: var(--txt-color-4);
    color: #FFF;
    padding: 5px 25px;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    align-items: flex-end;
}

.event-content-inner {
    background: var(--sub-color-6);
    padding: 20px;
    display: flex;
    gap: 20px;
}

@media(max-width:992px) {
    .event-content-inner {
        flex-direction: column;
    }
}

.event-content-inner img {
    height: 500px;
    width: 350px;
    object-fit: cover;
}

@media(max-width:992px) {
    .event-content-inner img {
        height: 500px;
        width: 100%;
    }
}

.event-pagenations {
    position: relative;
}

@media(max-width:992px) {
    .event-pagenations {
        padding: 0 15px;
    }
}

.event-pagenation-lists {
    display: flex;
    margin: 45px 0;
    justify-content: center;
    gap: 10px;
}

.event-pagenation-list {
    border: 1px solid var(--txt-color-5);
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFF;
    color: var(--txt-color-5);
}

.event-pagenation-list a {
    color: var(--txt-color-5);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-pagenation-list:first-of-type:not(.active),
.event-pagenation-list:last-of-type:not(.active) {
    width: 70px;
}

.event-pagenation-list.active {
    color: #FFF;
    background: var(--txt-color-5);
}