#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--background1);
    height: var(--about-height);
    padding: var(--padding);
    color: var(--font1);
    box-sizing: border-box;
    margin-bottom: 60px;

    #introduction {
        text-align: center;
        max-width: 1000px;
        margin: 20px 0;
        line-height: 160%;
    }
}


.work-search {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    width: 400px;
    height: 300px;
    padding: 20px;

    .frame-container {
        img {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        span {
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--background1);
            top: 0;
            right: 0;
        }

        img:last-child {
            filter: drop-shadow(3px 4px 4px var(--diamond2));
        }

    }


    .content-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1;

        p:first-child {
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 17px;
        }

        p:nth-child(2n) {
            margin-bottom: 8px;
        }

        div {
            display: flex;
            justify-content: space-around;
            width: 100%;
            height: 48px;
            margin-top: 24px;
        }
    }

}



/* 📱 Mobile large (481px et plus) */
@media (min-width: 481px) {}

/* 📲 Tablettes (768px et plus) */
@media (min-width: 768px) {

    .work-search {
        width: 500px;
        height: 260px;
    }
}

/* 💻 Ordinateurs portables (1025px et plus) */
@media (min-width: 1025px) {}

/* 🖥 Grands écrans (1367px et plus) */
@media (min-width: 1367px) {}

/* 🖥📺 Ultra-large (1920px et plus) — optionnel */
@media (min-width: 1920px) {}