.education-container {
    background-color: var(--black-color);
    padding-top: var(--margin-10);
}

.education {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

.education-item {
    position: relative;
    height: 50px;
    flex-grow: 1;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: width 0.4s;

    ::marker {
        content: "";
    }
}

.education-item[open] {
    height: max-content;

    .education-item__summary {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.education-item__summary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    h3 {
        position: relative;
        z-index: 1;
    }
}


.education-item[open] .education-item__summary img {
    filter: brightness(0.3);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    top: 0;
    position: absolute;
}

.education-item__info {
    position: relative;
    padding: 24px 16px;
    color: #ffffff;
    text-align: center;
    margin-top: var(--margin-10);
    border: 1px solid var(--white-color);

    img {
        filter: none;
        top: 0;
        left: 0;
        position: relative;
        object-fit: cover;
        max-width: 500px;
    }
}