/*
Theme Name:   Al-Ahkam Child Theme
Theme URI:    https://al-ahkam.net
Description:  Child theme khas untuk al-ahkam.net
Author:       Zain
Template:     generatepress
Version:      1.0.0
Text Domain:  alahkam-child
*/

/* Tambahkan kod CSS custom anda di bawah garisan ini */
/* =========================================================================
   REKA BENTUK KAD ARKIB & PORTAL ILMU (CSS)
   ======================================================================== */

/* Susunan Grid untuk Senarai Pos / Arkib */
.archive .site-main, .blog .site-main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Reka Bentuk Kad Individu */
.archive .hentry, .blog .hentry {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 0 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.archive .hentry:hover, .blog .hentry:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

/* Tajuk Kad */
.archive .entry-title a, .blog .entry-title a {
    color: #1e3a8a;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: 700;
}

.archive .entry-title a:hover {
    color: #2563eb;
}

/* Meta & Petikan Ringkas */
.archive .entry-meta, .blog .entry-meta {
    font-size: 0.85em;
    color: #64748b;
    margin-bottom: 10px;
}

.archive .entry-summary, .blog .entry-summary {
    color: #475569;
    font-size: 0.95em;
    margin-bottom: 15px;
}