/* تنسيق كروت about-card لعرض بطاقتين في الصف على الشاشات فوق 340 بكسل */
.aboutt {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin: 2px 0;
}
.about-card {
    flex: 1 1 140px;
    max-width: 180px;
    min-width: 140px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 8px 12px 8px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.about-card img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 8px;
}
.about-card h4 {
    font-size: 1.08em;
    font-weight: 700;
    color: #222;
    margin: 0;
}
@media (max-width: 340px) {
    .aboutt {
        flex-direction: column;
        gap: 12px;
    }
    .about-card {
        max-width: 100%;
    }
}
@media (min-width: 341px) and (max-width: 600px) {
    .aboutt {
        flex-wrap: wrap;
        flex-direction: row;
        gap: 14px;
    }
    .about-card {
        flex: 1 1 calc(50% - 14px);
        max-width: calc(50% - 14px);
    }
}
