﻿
/* ===== GoldSafari (gs-) Design System - Inline-free CSS ===== */
/* --- Layout / Container --- */
.gs-container {
    margin-top: 30px;
}

/* --- Card --- */
.gs-card {
    border-radius: 15px;
    padding: 16px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.gs-card--hoverable:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}

/* --- Header --- */
.gs-header {
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.gs-header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.gs-title {
    font-weight: 700;
    margin: 0;
}

.gs-updated {
    font-weight: 600;
    color: #666;
    margin: 0;
}

.gs-intro {
    margin-top: 0.5rem;
    color: #333;
    line-height: 1.9rem;
    text-align: justify;
}

/* --- Info Cards Row --- */
.gs-info-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.gs-info-card {
    direction: rtl;
    text-align: right;
}

    .gs-info-card * {
        direction: rtl !important;
        text-align: right !important;
    }


.gs-info-card {
    flex: 1;
    min-width: 220px;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #eee;
    background: #fff;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .gs-info-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    }

.gs-info-card__img {
    width: 40px;
    display: block;
    margin-bottom: 8px;
}

.gs-info-card__title {
    font-weight: 700;
    margin: 0 0 6px 0;
    font-size: 1rem;
}

.gs-info-card__text {
    color: #555;
    margin: 0;
    line-height: 1.7rem;
}

/* --- Hero / Banner --- */
.gs-hero {
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg,#fff7d6,#f4e4b2);
}

.gs-hero__text {
    color: #b8890d;
    font-weight: 700;
    margin: 0;
    line-height: 1.7rem;
}

/* --- Rule Section --- */
.gs-section {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 1.25rem;
    transition: box-shadow .25s ease;
}

    .gs-section:hover {
        box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    }

.gs-section__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #444;
    margin: 0 0 8px 0;
}

    .gs-section__title img.gs-icon-sm {
        width: 18px;
        opacity: .8;
        display: inline-block;
    }

.gs-section__text {
    margin: 0;
    line-height: 1.9rem;
    color: #333;
    text-align: justify;
}

/* --- Typography small helpers --- */
.gs-strong {
    font-weight: 700;
}

.gs-link {
    color: #c29115;
    text-decoration: none;
    font-weight: 600;
}

/* --- Responsive tweaks --- */
@@media (max-width: 768px) {
    .gs-info-row {
        gap: 12px;
    }

    .gs-header__top {
        flex-direction: column;
        align-items: flex-start;
    }
}
