/* Simple Cards With Text - About Us Section */
/* Figma 1440px baseline — all vw = (figma_px / 1440 × 100)       */
/* Card 223×182 · textbox 178×132 · gap 12 · Open Sans 600 16px   */

.simple-cards-section {
    width: 80.764vw !important;          /* (1163 / 1440) */
    max-width: 100%;
    margin: 20vw auto 0 auto !important; /* (288 / 1440) */
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 0.833vw !important;             /* (12 / 1440) */
    padding: 0 !important;
}

.simple-card-item {
    flex: 0 0 15.486vw !important;       /* (223 / 1440) */
    width: 15.486vw !important;
    min-height: 12.639vw !important;     /* (182 / 1440) */
    background-color: #F4F4F4;
    border-radius: 0.278vw;             /* (4 / 1440) */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.389vw !important;         /* (20 / 1440) */
    transition: transform 0.2s ease;
    box-sizing: border-box !important;
}

.simple-card-item:hover {
    transform: translateY(-0.347vw);     /* (5 / 1440) */
}

.simple-card-item p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.11111vw !important;      /* (16 / 1440) */
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0;
    color: #000;
    width: 100% !important;
    min-width: 0 !important;
    overflow-wrap: break-word;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left;
}

/* Tablet: 3-column wrap */
@media (max-width: 1024px) {
    .simple-cards-section {
        width: 90% !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
        margin-top: 180px !important;
    }
    .simple-card-item {
        flex: 0 0 calc(33.33% - 8px) !important;
        width: calc(33.33% - 8px) !important;
        min-height: 140px !important;
        border-radius: 4px;
        padding: 20px !important;
    }
    .simple-card-item p {
        font-size: 14px !important;
        width: auto !important;
        height: auto !important;
        line-height: 1.3;
    }
}

/* Mobile: uniform stacked cards */
@media (max-width: 768px) {
    .simple-cards-section {
        width: 85% !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 10px !important;
        margin-top: 140px !important;
    }
    .simple-card-item {
        flex: 0 0 auto !important;
        width: 100% !important;
        min-height: 80px !important;
        border-radius: 4px;
        padding: 16px 20px !important;
    }
    .simple-card-item p {
        font-size: 14px !important;
        width: auto !important;
        height: auto !important;
        line-height: 1.3;
    }
}
