/* ABOUT — About section, portrait and biography text. */

.about {
    background: #f8f8f8;
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 150px;
    height: 150px;
    border: 2px dashed rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: center;
}

.profile-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border: 5px solid #000000;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.1);
}

.profile-img:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px rgba(0, 0, 0, 0.1);
}

.about-text p {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .profile-img {
        max-width: 300px;
        height: 300px;
        margin: 0 auto;
    }
}
