@charset "utf-8";
/*==========================
main
==========================*/
.section--about {
    padding: 8px 6.4%;
}

.dummyTitle {
    display: none;
}

/* greeting */
.greeting {
    padding: 0px 3.8226% 112px;
}

.greetingImage {
    width: 49.668%;
    display: block;
    margin: 48px auto 64px;
}

.greetingName {
    font-size: 2rem;
}

.greetingtext {
    line-height: 2;
    padding: 8px 0px 16px;
}

.topCirxle_btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none; 
    position: relative;
}

.topCirxle_btn .btn__text {
    position: relative;
}

.topCirxle_btn .btn__text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px; 
    width: 0;
    height: 1px;
    background: #333; 
    transition: width 0.3s ease;
}

.topCirxle_btn:hover .btn__text::after {
    width: 100%;
}

.topCirxle_btn.active .btn__text::after {
    width: 100%;
}/* greeting */

/* profile */
.profile {
    display: flex;
    flex-direction: column;
    gap: 96px;
}

/* skills */
.profile__item {
    font-family: "Urbanist";
    font-style: italic;
    margin-bottom: 8px;
}

.profile__skills {
    display: flex;
    gap: 48px;
}

.profile__skillsTitle {
    width: 58px;
}/* skills */

/* Strengths */
.profile__strengthsBox {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.profile__strengthsTitle {
    font-weight: 700;
}

.number {
    font-size: 1.4rem;
    font-weight: 300;
}

.profile__strengthsText {
    line-height: 2;
}/* Strengths */

.profile__text {
    line-height: 2;
}/* profile */

/* photos */
.photos {
    margin: 48px 0px 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.photos__top,
.photos__under {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.photos img {
    width: 31.498%;
    display: block;
}

.photo-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;  
    justify-content: center; 
}

.photo-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    transition: filter 0.3s ease;
    flex-shrink: 0;
}

.photo__text {
    position: absolute; 
    color: #fff;
    font-weight: bold;
    text-align: center;
    opacity: 0;
    transform: translateY(20px); 
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.photo-wrapper:hover img {
    filter: brightness(0.5);
}

.photo-wrapper:hover .photo__text,
.photo-wrapper:active .photo__text {
    opacity: 1;
    transform: translateY(0); 
}/* photos */

/* main pc */
@media screen and (min-width:769px) {
    .section--about{
        padding: 0px;
    }

    /* greeting pc */
    .greeting {
        padding: 0px;
        max-width: 677px;
        display: block;
        margin: 100px auto;
    }

    .section__topic {
        font-size: 3.2rem;
    }

    .greetingName {
        font-size: 2.4rem;
    }/* greeting pc */

    /* profile pc */
    .profile {
        max-width: 677px;
        margin: 160px auto;
        position: relative;
    }

    .profile::before {
        content: "";
        position: absolute;
        width: 1px;
        height: 952px;
        background-color: #C2BEBE;
        top: 0;
        left: 128px;
    }

    .profile__content {
        display: flex;
        align-items:flex-start;
        justify-content: space-between;
    }

    .profile__item {
        margin-bottom: 0px;
        width: 67.5px;
        line-height: 2;
    }

    .profile__itemBox {
        display: flex;
        flex-direction: column;
    }

    .profile__itemBox,
    .profile__strengthsBox,
    .profile__text {
        width: 515px;
    }

    .profile__strengthsBox {
        gap: 48px;
    }/* profile pc */

    .likesBr {
        display: none;
    }

    .photos {
        margin: 0 auto;
        max-width: 1200px;
    }

    .photos,
    .photos__top,
    .photos__under {
        gap: 24px;
    }
}

