/* =========================
   BLOG PAGE
   ========================= */

.blog-templates {
    padding: 3.5rem 0 5rem;
}

.blogt-title {
    margin: 0 0 0.6rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    text-align: center;
    color: #1f2a1f;
    letter-spacing: -0.02em;
}

.blogt-subtitle {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5f6b5f;
}

.blogt-grid {
    display: grid;
    gap: 1.4rem;
    max-width: 980px;
    margin: 0 auto;
}

.blogt-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
    border: 1px solid rgba(114, 132, 109, 0.18);
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 12px 30px rgba(31, 42, 31, 0.08),
        0 2px 10px rgba(31, 42, 31, 0.04);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.blogt-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 38px rgba(31, 42, 31, 0.12),
        0 4px 14px rgba(31, 42, 31, 0.06);
    border-color: rgba(114, 132, 109, 0.3);
}

.blogt-card[open] {
    border-color: rgba(123, 146, 98, 0.35);
    box-shadow:
        0 18px 38px rgba(31, 42, 31, 0.12),
        0 4px 14px rgba(31, 42, 31, 0.06);
}

.blogt-summary {
    list-style: none;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem;
    cursor: pointer;
}

.blogt-summary::-webkit-details-marker {
    display: none;
}

.blogt-media {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    background: #e8e1d2;
    flex-shrink: 0;
}

.blogt-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.blogt-card:hover .blogt-img,
.blogt-card[open] .blogt-img {
    transform: scale(1.04);
}

.blogt-head {
    min-width: 0;
}

.blogt-name {
    margin: 0 0 0.45rem;
    font-size: 1.35rem;
    line-height: 1.25;
    color: #233123;
}

.blogt-meta {
    margin: 0;
    font-size: 0.95rem;
    color: #6b7767;
    letter-spacing: 0.01em;
}

.blogt-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #f3eee1;
    color: #55624f;
    font-size: 1.15rem;
    transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.blogt-card[open] .blogt-chevron {
    transform: rotate(180deg);
    background: #dfe8d3;
    color: #2f412d;
}

.blogt-body {
    padding: 0 1.2rem 1.35rem 1.2rem;
    color: #425042;
}

.blogt-body p {
    margin: 0 0 1rem;
    line-height: 1.8;
    font-size: 1rem;
}

.blogt-body p:last-child {
    margin-bottom: 0;
}

.blogt-body strong {
    color: #243224;
}

/* Optional soft divider feel */
.blogt-body::before {
    content: "";
    display: block;
    height: 1px;
    margin: 0 0 1.1rem;
    background: linear-gradient(to right, transparent, rgba(114, 132, 109, 0.35), transparent);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 820px) {
    .blogt-summary {
        grid-template-columns: 1fr;
        gap: 0.95rem;
    }

    .blogt-media {
        height: 220px;
    }

    .blogt-chevron {
        margin-top: -0.2rem;
    }

    .blogt-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 540px) {
    .blog-templates {
        padding: 2.5rem 0 4rem;
    }

    .blogt-summary {
        padding: 0.85rem;
    }

    .blogt-body {
        padding: 0 0.85rem 1rem 0.85rem;
    }

    .blogt-media {
        height: 185px;
        border-radius: 14px;
    }

    .blogt-name {
        font-size: 1.15rem;
    }

    .blogt-subtitle {
        font-size: 0.98rem;
    }
}




.dd-anim {
    height: 0;
    overflow: hidden;
}

.blogt-body {
    padding: 1.1rem 1.2rem 1.35rem;
    color: #425042;
}

.blogt-body p {
    margin: 0 0 1rem;
    line-height: 1.8;
    font-size: 1rem;
}

.blogt-body p:last-child {
    margin-bottom: 0;
}

.blogt-body strong {
    color: #243224;
}

.blogt-body::before {
    content: "";
    display: block;
    height: 1px;
    margin: 0 0 1.1rem;
    background: linear-gradient(to right, transparent, rgba(114, 132, 109, 0.35), transparent);
}