/*
Theme Name: Blocksy Child
Template: blocksy
Version: 2.0 (Full Fix)
*/

/* =========================================
   1. المتغيرات العامة (Global Variables)
   ========================================= */
:root {
    --ah-primary: #2563eb;
    /* أزرق */
    --ah-primary-dark: #1e40af;
    --ah-secondary: #f59e0b;
    /* برتقالي/ذهبي للنجوم */
    --ah-dark: #0f172a;
    /* كحلي غامق للنصوص */
    --ah-gray: #64748b;
    /* رمادي للنصوص الفرعية */
    --ah-light: #f8fafc;
    /* خلفية فاتحة جداً */
    --ah-border: #e2e8f0;
    /* لون الحدود */
    --ah-white: #ffffff;
    --ah-radius: 12px;
    --ah-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
    --ah-font: 'Tajawal', 'Almarai', sans-serif;
}

body {
    font-family: var(--ah-font) !important;
    color: var(--ah-dark);
    background-color: #f9fafb;
}

/* إصلاح أيقونات FontAwesome 6 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-solid,
.fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.fa-regular,
.far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
}

.fa-brands,
.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}


/* حاوية عامة تمنع الالتصاق وتضبط العرض */
.ah-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. إصلاح الهيكلة (Layout Fixes)
   ========================================= */
/* مسافة علوية لمنع الالتصاق بالناف بار */
.hotel-archive-wrapper,
#alahd-pixel-perfect {
    padding-top: 60px;
    /* زيادة المسافة العلوية */
    padding-bottom: 80px;
    direction: rtl;
}

/* =========================================
   3. شريط البحث الموحد (Unified Search Bar)
   ========================================= */
.search-strip-wrapper {
    position: relative;
    margin-bottom: 40px;
    z-index: 20;
}

.search-strip {
    background: var(--ah-white);
    padding: 10px;
    border-radius: 16px;
    box-shadow: var(--ah-shadow);
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    min-height: 75px;
}

.search-field {
    flex: 1;
    padding: 5px 25px;
    border-left: 1px solid var(--ah-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.search-field:last-child {
    border: none;
    padding: 0 0 0 15px;
    flex: 0 0 140px;
}

.search-field:nth-last-child(2) {
    border-left: none;
}

.field-label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 6px;
}

.field-input {
    width: 100%;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: var(--ah-dark);
    outline: none;
}

.btn-search-hero {
    background: var(--ah-primary);
    color: #fff;
    height: 55px;
    width: 100%;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    transition: 0.3s;
}

.btn-search-hero:hover {
    background: var(--ah-primary-dark);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

/* =========================================
   4. صفحة الأرشيف (Archive Page)
   ========================================= */
.content-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    /* سايدبار ثابت ومحتوى مرن */
    gap: 40px;
    align-items: start;
}

/* السايدبار (الفلاتر) */
.sidebar-card {
    background: var(--ah-white);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    border: 1px solid var(--ah-border);
}

.filter-head {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 15px;
    display: block;
    color: var(--ah-dark);
    border-bottom: 1px solid var(--ah-light);
    padding-bottom: 10px;
}

.check-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: 0.2s;
    background: #fff;
    border: 1px solid transparent;
}

.check-wrap:hover {
    background: var(--ah-light);
    border-color: var(--ah-border);
}

.check-box-visual {
    width: 22px;
    height: 22px;
    border: 2px solid #cbd5e1;
    border-radius: 5px;
    margin-left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    background: #fff;
}

.check-wrap input:checked+.check-box-visual {
    background: var(--ah-primary);
    border-color: var(--ah-primary);
}

.check-wrap input {
    display: none;
}

.stars-container {
    color: var(--ah-secondary);
    display: flex;
    gap: 3px;
    font-size: 14px;
}

input[type=range] {
    width: 100%;
    accent-color: var(--ah-primary);
    cursor: pointer;
}

.btn-book {
    background: var(--ah-dark);
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border: none;
    cursor: pointer;
}

.btn-book:hover {
    background: var(--ah-primary);
}

/* كرت الفندق في الأرشيف */
.hotel-item {
    background: var(--ah-white);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    margin-bottom: 25px;
    box-shadow: var(--ah-shadow);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    height: 250px;
}

.hotel-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
    border-color: #bfdbfe;
}

.h-thumb {
    width: 35%;
    position: relative;
    overflow: hidden;
}

.h-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hotel-item:hover .h-thumb img {
    transform: scale(1.05);
}

.h-details {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.h-name {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 5px;
    color: var(--ah-dark);
    line-height: 1.3;
}

.h-name a {
    color: inherit;
    text-decoration: none;
}

.h-name a:hover {
    color: var(--ah-primary);
}

.h-loc {
    font-size: 13px;
    color: var(--ah-gray);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.h-stars {
    background: #fffbeb;
    color: var(--ah-secondary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    gap: 3px;
}

.h-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.feature-badge {
    font-size: 11px;
    color: var(--ah-gray);
    background: var(--ah-light);
    padding: 5px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.h-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--ah-light);
    padding-top: 15px;
    margin-top: 15px;
}

.h-price .lbl {
    font-size: 11px;
    color: var(--ah-gray);
    font-weight: 600;
    display: block;
}

.h-price .val {
    font-size: 26px;
    font-weight: 800;
    color: var(--ah-primary);
}

.h-price .curr {
    font-size: 13px;
    font-weight: 600;
    color: var(--ah-dark);
    margin-right: 4px;
}

/* =========================================
   5. صفحة الفندق الفردية (Single Hotel)
   ========================================= */
/* Breadcrumbs */
.ah-breadcrumbs {
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--ah-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ah-breadcrumbs a {
    color: var(--ah-gray);
}

.ah-breadcrumbs a:hover {
    color: var(--ah-primary);
}

.ah-breadcrumbs .curr {
    color: var(--ah-dark);
    font-weight: 600;
}

/* Header & Stars */
.ah-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
}

.ah-title-block h1 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 10px;
    line-height: 1.2;
    color: var(--ah-dark);
}

.ah-title-block .stars {
    font-size: 16px;
    color: var(--ah-secondary);
    margin-right: 10px;
    vertical-align: middle;
    display: inline-flex;
    gap: 3px;
}

.ah-title-block .location {
    font-size: 15px;
    color: var(--ah-gray);
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

/* Gallery */
.ah-gallery-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.gallery-big {
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100%;
}

.gallery-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: 100%;
}

.g-item {
    background-size: cover;
    background-position: center;
    height: 100%;
    position: relative;
    transition: 0.3s;
}

.g-item:hover,
.gallery-big:hover {
    filter: brightness(0.9);
    cursor: pointer;
}

.more-photos {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.video-play-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    color: var(--ah-dark);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.video-play-btn:hover {
    transform: scale(1.05);
}

/* Single Layout */
.ah-layout-flex {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Tabs */
.ah-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid var(--ah-border);
    margin-bottom: 30px;
    background: #fff;
    padding: 0 20px;
    border-radius: 12px;
    position: sticky;
    top: 20px;
    z-index: 10;
    box-shadow: var(--ah-shadow);
}

.tab-link {
    padding: 20px 0;
    font-weight: 700;
    color: var(--ah-gray);
    border-bottom: 3px solid transparent;
    transition: 0.3s;
    font-size: 15px;
    text-decoration: none;
}

.tab-link:hover,
.tab-link.active {
    color: var(--ah-primary);
    border-bottom-color: var(--ah-primary);
}

/* General Cards (Overview, Location, etc) */
.ah-card {
    background: var(--ah-white);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--ah-border);
    box-shadow: var(--ah-shadow);
}

.sec-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 20px;
    color: var(--ah-dark);
}

.desc-text {
    line-height: 1.8;
    color: #475569;
    font-size: 15px;
    margin-bottom: 30px;
}

/* Facilities Grid */
.facilities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.fac-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ah-dark);
    background: var(--ah-light);
    padding: 10px 15px;
    border-radius: 8px;
}

.fac-item i {
    color: var(--ah-primary);
    width: 20px;
    text-align: center;
}

/* Rooms Section */
.rooms-section {
    margin-top: 40px;
}

.sec-heading {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.ah-room-card {
    background: #fff;
    border: 1px solid var(--ah-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    margin-bottom: 25px;
    transition: 0.3s;
    box-shadow: var(--ah-shadow);
}

.ah-room-card:hover {
    border-color: var(--ah-primary);
    transform: translateY(-3px);
}

.ah-room-card.sold-out {
    opacity: 0.7;
    filter: grayscale(1);
    pointer-events: none;
}

.r-image {
    width: 320px;
    position: relative;
}

.r-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-sold {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ef4444;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.r-details {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.r-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.r-header h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: var(--ah-dark);
}

.guest-badges {
    display: flex;
    gap: 5px;
}

.guest-badge {
    font-size: 11px;
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 4px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 4px;
}

.r-icons {
    display: flex;
    gap: 15px;
    margin: 12px 0;
    color: #64748b;
    font-size: 13px;
    flex-wrap: wrap;
}

.r-icons span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.r-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 15px;
}

.r-features .feat {
    font-size: 13px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.r-features .feat i {
    color: #10b981;
    font-size: 12px;
}

.r-action {
    width: 200px;
    border-right: 1px solid var(--ah-border);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fbfcfe;
}

.price-row {
    margin-bottom: 15px;
}

.price-row .val {
    font-size: 26px;
    font-weight: 800;
    color: var(--ah-primary);
    display: block;
}

.price-row small {
    font-size: 13px;
    color: var(--ah-gray);
}

.btn-room-select {
    background: var(--ah-dark);
    color: #fff;
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

.btn-room-select:hover {
    background: var(--ah-primary);
}

.btn-room-select.disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}

/* Booking Widget */
.booking-widget {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--ah-border);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.booking-widget.disabled {
    opacity: 0.8;
}

.widget-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--ah-border);
}

.widget-head .lbl {
    font-size: 13px;
    color: var(--ah-gray);
}

.widget-head .price {
    font-size: 22px;
    font-weight: 800;
    color: var(--ah-primary);
}

.inp-group {
    margin-bottom: 15px;
}

.inp-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 6px;
}

.ah-input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--ah-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    background: #f8fafc;
    transition: 0.3s;
}

.ah-input:focus {
    border-color: var(--ah-primary);
    background: #fff;
    outline: none;
}

.dates-grid,
.guests-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Extras */
.extras-wrapper {
    margin-top: 15px;
}

.extras-chips {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.extra-chip {
    position: relative;
    cursor: pointer;
}

.extra-chip input {
    display: none;
}

.chip-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid var(--ah-border);
    border-radius: 8px;
    background: #fff;
    transition: 0.2s;
}

.extra-chip input:checked+.chip-content {
    border-color: var(--ah-primary);
    background: #eff6ff;
    color: var(--ah-primary);
}

.chip-content .icon-check {
    display: none;
}

.extra-chip input:checked+.chip-content .icon-check {
    display: block;
}

.extra-chip input:checked+.chip-content .icon-add {
    display: none;
}

/* Total Section */
.total-section {
    background: #f0f9ff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px dashed var(--ah-primary);
}

.lbl-total {
    font-size: 13px;
    color: var(--ah-primary-dark);
    display: block;
    margin-bottom: 5px;
}

.final-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--ah-primary);
}

.total-note {
    font-size: 11px;
    color: var(--ah-gray);
    display: block;
    margin-top: 5px;
}

/* Guest Info */
.guest-info-wrapper {
    background: #fff;
    border-top: 1px solid var(--ah-border);
    padding-top: 20px;
    margin-top: 20px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.guest-title {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 15px;
}

.btn-confirm {
    width: 100%;
    padding: 15px;
    background: var(--ah-dark);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-confirm:hover:not(:disabled) {
    background: var(--ah-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.btn-confirm:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    opacity: 0.7;
}

/* =========================================
   6. التجاوب (Responsive)
   ========================================= */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .ah-layout-flex {
        grid-template-columns: 1fr;
    }

    .search-strip {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 15px;
    }

    .search-field {
        width: 100%;
        border-left: none;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
    }

    .ah-gallery-wrapper {
        height: 300px;
        grid-template-columns: 1fr;
    }

    .gallery-small-grid {
        display: none;
    }

    .hotel-item,
    .ah-room-card {
        flex-direction: column;
        height: auto;
    }

    .h-thumb,
    .r-image {
        width: 100%;
        height: 200px;
    }

    .h-footer {
        align-items: center;
    }

    .r-action {
        width: 100%;
        border-right: none;
        border-top: 1px solid var(--ah-border);
        padding: 20px;
        flex-direction: row;
        justify-content: space-between;
    }

    .price-row {
        margin-bottom: 0;
    }

    .btn-room-select {
        width: auto;
        padding: 10px 25px;
    }

    .ah-container {
        padding: 0 15px;
    }

    .sidebar-filters {
        display: none;
        /* يمكن إضافة زر لإظهار الفلاتر لاحقاً */
    }
}

/* =========================================
   7. شورت كود الفنادق (Shortcodes Styles)
   ========================================= */
.ah-hotels-wrapper {
    margin: 40px 0;
}

.ah-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 كروت في الصف */
    gap: 30px;
}

/* الكرت داخل الشبكة */
.ah-grid .ah-card {
    padding: 0;
    /* إلغاء البادينج الافتراضي للسماح للصورة بأخذ كامل العرض */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ah-card-media {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.ah-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.ah-grid .ah-card:hover .ah-img {
    transform: scale(1.1);
}

.ah-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
}

.ah-badge-rating {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    color: var(--ah-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ah-badge-offer {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ef4444;
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
}

.ah-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ah-grid .ah-title {
    font-size: 18px;
    margin: 0 0 8px;
    line-height: 1.4;
}

.ah-location {
    font-size: 13px;
    color: var(--ah-gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ah-facilities-row {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.fac-pill {
    font-size: 11px;
    background: var(--ah-light);
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--ah-gray);
    display: flex;
    align-items: center;
    gap: 4px;
}

.ah-divider {
    height: 1px;
    background: var(--ah-light);
    margin: auto 0 15px;
    width: 100%;
}

.ah-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price-block .lbl {
    font-size: 11px;
    color: var(--ah-gray);
    display: block;
}

.price-block .curr {
    font-size: 20px;
    font-weight: 800;
    color: var(--ah-primary);
}

.ah-btn-book {
    background: var(--ah-light);
    color: var(--ah-primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
    text-decoration: none;
}

.ah-grid .ah-card:hover .ah-btn-book {
    background: var(--ah-primary);
    color: #fff;
}

/* تجاوب الشبكة */
@media (max-width: 992px) {
    .ah-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ah-grid {
        grid-template-columns: 1fr;
    }
}