.about-merchant-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    max-width: 1560px;
    margin: 40px auto 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
}

.about-img-wrapper {
    flex-shrink: 0;
    width: 300px;
    max-width: 100%;
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.about-text-content {
    flex-grow: 1;
    max-width: 100%;
}

.about-text-content .about-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 16px;
}

.about-text-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 12px;
}

.about-text-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 850px) {
    .about-merchant-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 20px;
    }

    .about-img-wrapper {
        width: 100%;
    }
}