/* ABOUT SECTION WRAPPER */
.sm-about {
    width: 100%;
    margin-top: 20px;
    padding: 80px 20px 20px 20px;

}

.sm-about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sm-about-content {
    padding: 20px;

}

/* IMAGE */
.sm-about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* TEXT */
.sm-about-subtitle {
    font-size: 16px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #5ec7d4;
}

.sm-about-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 24px;
}

.sm-about-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .sm-about {
        
        padding-bottom: 10px;
    }
    .sm-about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sm-about-image img {
        height: 260px;
    }

    .sm-about-title {
        font-size: 28px;
    }

    .sm-about-text {
        font-size: 13px;
    }
}