/*
Theme Name: Salient Child
Template: salient
*/


/* =========================
   FORCE GRID STRUCTURE
   ========================= */

.reports-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
    gap: 30px !important;
    margin-top: 40px;
}


/* =========================
   CARD STYLING
   ========================= */

.sameer-docs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* FILTERS */
.sameer-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.sameer-filters select {
    padding: 10px 14px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 5px;
}

/* GRID */
.sameer-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
    gap: 30px !important;
}

/* CARD */
.sameer-card {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 30px;
    border-radius: 8px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
}

/* META */
.sameer-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* TITLE */
.sameer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* BUTTON */
.sameer-btn {
    display: inline-block !important;
    padding: 12px 20px !important;
    background: #0A3D2E !important;
    color: #fff !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    font-size: 14px;
    transition: all 0.25s ease;
}

/* hover */
.sameer-btn:hover {
    background: #C3A36B !important;
    color: #0A3D2E !important;
}