/* About Section Styles */

.about-section {
    padding: 150px 0 0 0;
    background: #F8F7EC;
}

.about-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

.about-card {
    width: 100%;
    background: #E7E5DC;
    border-radius: 8px;
    padding: 32px;
    position: relative;
}

.about-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 73px;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-dot {
    width: 10px;
    height: 10px;
    background: #8E2929;
    border-radius: 2px;
    flex-shrink: 0;
}

.about-category {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #1F1F1F;
    margin: 0;
}

.about-image-wrapper {
    width: 180px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    position: absolute;
    top: 32px;
    right: 32px;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 37px, 100% 100%, 0 100%);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: calc(100% - 220px);
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1;
    color: #1F1F1F;
    margin: 0;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1F1F1F;
    margin: 0;
}

.about-highlight {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #8E2929;
}

.about-read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.about-read-more:hover {
    gap: 12px;
}

.about-read-more span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1F1F1F;
}

.about-arrow {
    width: 24px;
    height: 24px;
    background: #FFCC29;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .about-section {
        padding: 150px 0 0 0;
    }

    .about-container {
        gap: 48px;
    }

    .about-card {
        padding: 32px 16px;
    }

    .about-header {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 48px;
    }

    .about-image-wrapper {
        position: static;
        width: 100%;
        height: 181px;
        clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 28px, 100% 100%, 0 100%);
    }

    .about-content {
        max-width: 100%;
    }

    .about-title {
        font-size: 24px;
    }

    .about-text {
        gap: 24px;
    }
}
