/* Wrapper — houdt de achtergrond vast */
.rt-btc-wrap {
    box-sizing: border-box;
}

/* Volledige breedte: breekt uit de Enfold container naar de vensterbreedte */
.rt-btc-wrap--full {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: 100vw;
}

/* Inner container — bepaalt max. contentbreedte en linker/rechter marge */
.rt-btc-inner {
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* Layout 2 kolommen */
.rt-btc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.rt-btc a,
.rt-btc a:hover,
.rt-btc a:focus,
.rt-btc a:visited {
    text-decoration: none;
    color: inherit;
}

.rt-btc__left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.rt-btc__item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 22px;
    align-items: start;
}

.rt-btc__thumb {
    width: 110px;
    height: 110px;
    background: rgba(0, 0, 0, 0.04);
}

.rt-btc__thumb img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.rt-btc__meta {
    color: #6a1b5c;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 10px;
    font-size: 16px;
}

.rt-btc__sep {
    margin: 0 4px;
    opacity: 0.8;
}

.rt-btc__excerpt {
    color: #222;
    font-size: 15px;
    line-height: 1.55;
}

.rt-btc__excerpt--long {
    font-size: 16px;
    line-height: 1.6;
}

.rt-btc__feature-img {
    margin-bottom: 18px;
    overflow: hidden;
}

.rt-btc__feature-img img {
    width: 100%;
    height: auto;
    display: block;
}

.rt-btc__item:hover .rt-btc__meta,
.rt-btc__feature:hover .rt-btc__meta {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .rt-btc {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .rt-btc__item {
        grid-template-columns: 80px 1fr;
        gap: 14px;
    }
    .rt-btc__thumb,
    .rt-btc__thumb img {
        width: 80px;
        height: 80px;
    }
    .rt-btc__meta {
        font-size: 14px;
    }
}
