
.related-apps-module {
    width: 100%;
    background-color: #f9fafb;
    border-radius: 24px;
    margin: 30px 0;
    direction: rtl;
}
.related-apps-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 24px;
    box-sizing: border-box;
}
.section-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #222222;
    text-align: center;
    margin-bottom: 20px;
}
.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.app-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.app-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}
.app-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.app-content {
    padding: 16px 16px 20px;
    text-align: center;
}
.app-content h3 {
    font-weight: 700;
    font-size: 18px;
    color: #0047AB;
    margin-bottom: 8px;
}
.app-content p {
    font-size: 13px;
    line-height: 1.45;
    color: #555555;
}
@media (max-width: 900px) {
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
@media (max-width: 640px) {
    .related-apps-inner {
        padding: 20px 16px;
    }
    .section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .app-content {
        padding: 12px 12px 16px;
    }
    .app-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .app-content p {
        font-size: 12px;
    }
}
