/* === BLOGLIJSTPAGINA === */

.blg-section {
    padding-top: 120px;
    padding-bottom: 80px
}

.blg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.blg-header {
    text-align: center;
    margin-bottom: 40px
}

.blg-tag {
    color: #d4af37;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px
}

.blg-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #fff;
    margin: 0 0 8px
}

.blg-sub {
    color: #9ca3af;
    max-width: 700px;
    margin: 0 auto
}

.blg-empty {
    text-align: center;
    color: #9ca3af;
    padding: 50px 0
}

.blg-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px
}

.blg-card {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s, border-color .25s
}

.blg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
    border-color: #d4af37
}

.blg-thumb {
    position: relative;
    height: 210px;
    background: #0a0a0a;
    overflow: hidden
}

.blg-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.blg-card:hover .blg-thumb-img {
    transform: scale(1.05)
}

.blg-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08)
}

.blg-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.blg-card-title {
    font-size: 20px;
    color: #fff;
    margin: 0;
    font-weight: 700;
    line-height: 1.35
}

.blg-excerpt {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
    min-height: 44px;
    margin: 0
}

.blg-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #9ca3af;
    font-size: 13px;
    margin-top: auto
}

.blg-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d4af37;
    color: #000;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 12px;
    border: 1px solid #d4af37;
    transition: .2s
}

.blg-btn:hover {
    background: #fff;
    border-color: #fff;
    color: #000
}

.blg-detail-section {
    padding-top: 110px;
    padding-bottom: 80px
}

.blg-detail-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px
}

.blg-hero {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(0, 0, 0, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px 26px;
    margin-bottom: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35)
}

.blg-hero-meta {
    display: flex;
    gap: 12px;
    color: #9ca3af;
    font-size: 13px;
    flex-wrap: wrap;
    align-items: center
}

.blg-hero-meta .material-symbols-outlined {
    font-size: 16px;
    color: #d4af37
}

/* Algemene inhoudsinstellingen */

.blg-content {
    font-family: 'Roboto', sans-serif;
    color: #9ca3af;
    font-size: 16px;
    line-height: 1.7;
}

.blg-content h2 {
    font-size: 28px;
    font-family: 'Roboto',
    color: #fff;
    margin: 10px 0 15px 0;
    line-height: 1.3;
    font-weight: 700;
}

.blg-content h3 {
    font-size: 24px;
    color: #fff;
    margin: 10px 0 15px 0;
    line-height: 1.3;
    font-weight: 700;
}

.blg-content h4 {
    font-size: 20px;
    font-family: 'Roboto',
    color: #fff;
    margin: 10px 0 15px 0;
    line-height: 1.3;
    font-weight: 700;
}

.blg-content strong,
.blg-content b {
    color: #d4af37;
    /* Altın rengi */
    font-weight: 700;
}

.blg-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 5px 15px;
    border-radius: 12px;
    border: 2px solid #d4af37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blg-content a {
    color: #d4af37;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blg-content a:hover {
    color: #ffffff;
}

.blg-content ul,
.blg-content ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.blg-content li {
    margin-bottom: 10px;
    padding-left: 5px;
}