        body {
    background: #F9F9F7;
    color: #022873;
    font-family: 'Lato', system-ui, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
            gap: 2rem;
            padding: 3rem 0 5rem;
        }

        .info-card {
            background: #f9f9f7;
            border: 1px solid #e5e0d8;
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .info-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(26, 47, 37, 0.15);
            border-color: #355c2f;
        }

        .info-card-img {
            width: 100%;
            height: 210px;
            object-fit: cover;
            display: block;
        }

        .info-card-img-placeholder {
            width: 100%;
            height: 210px;
            background: #f0f4ff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            color: #1a2f25;
        }

        .info-card-body {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .info-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.28rem;
            font-weight: 600;
            color: #1a2f25;
            margin-bottom: 0.8rem;
            line-height: 1.35;
        }

        .info-card-desc {
            font-family: 'Lato', sans-serif;
            color: #64748b;
            font-size: 0.92rem;
            line-height: 1.65;
            flex: 1;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .info-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid #e5e0d8;
        }

        .info-card-date {
            font-family: 'Lato', sans-serif;
            font-size: 0.8rem;
            color: #94a3b8;
            font-weight: 400;
        }

        .btn-info-card {
            background: #20381d;
            color: #f0e6d2;
            border: none;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 0.55rem 1.4rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.25s ease;
            font-family: 'Lato', sans-serif;
        }

        .btn-info-card:hover {
            background: #355c2f;
            color: #ffffff;
            transform: translateY(-2px);
        }

        .empty-state {
            text-align: center;
            padding: 6rem 0;
            color: #94a3b8;
        }

        .empty-state .icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }

        /* Hero */
        .info-hero {
            background: linear-gradient(135deg, #f8f4eb, #e8f0e0);
            padding: 3.5rem 2rem;
            text-align: center;
            border-radius: 16px;
            margin: 2.5rem 0 4rem 0;
            border: 1px solid #e5e0d8;
        }

        .info-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.85rem;
            font-weight: 700;
            color: #1a2f25;
            margin-bottom: 0.8rem;
        }

        .info-hero p {
            font-family: 'Lato', sans-serif;
            font-size: 1.15rem;
            color: #355c2f;
            max-width: 680px;
            margin: 0 auto;
        }
