:root {
    --bg: #000;
    --panel: #061a3a;
    --panel2: #082352;
    --bar: #1c2fb0;
    --barText: #eaf2ff;
    --accentRed: #8b0000;
    --accentRed2: #b00000;
    --gold: #ffd24a;
    --radius: 10px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .55);
    --border: 1px solid rgba(255, 255, 255, .12);
    --wrapW: 1500px;
    --sideW: 270px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: radial-gradient(ellipse at top, rgba(255, 255, 255, .06), rgba(0, 0, 0, 0) 55%), #000;
    color: #e9eef9;
}

.topHeader {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: #000;
}

/* Header banner (sidebar-to-sidebar width, readable logo) */
.topHeader {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #000;
}

/* blurred background layer fills full width */
.topHeader::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hdr);
    background-size: cover;
    background-position: center 35%;
    filter: blur(14px) brightness(.55);
    transform: scale(1.08);
}

/* inner aligns to site wrap (sidebar-to-sidebar) */
.topHeaderInner {
    position: relative;
    max-width: var(--wrapW);
    margin: 0 auto;
    padding: 0 10px;
}

/* foreground image stays fully readable */
.topHeader img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 260px;
    object-fit: contain;
    object-position: center 35%;
    display: block;
}

/* Small screens */
@media (max-width: 640px) {
    .topHeaderInner {
        padding: 0 8px;
    }

    .topHeader img {
        height: 210px;
        object-position: center 35%;
    }
}


.navBar {
    background: linear-gradient(#111, #000);
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.navInner {
    max-width: var(--wrapW);
    margin: 0 auto;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.navToggle {
    display: none;
    width: 42px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px;
}

.navToggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: rgba(255, 255, 255, .85);
    border-radius: 2px
}

.navLinks {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    flex: 1;
    justify-content: center
}

.navInner a {
    color: #f1f1f1;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 8px;
    border-radius: 6px;
}

.navInner a:hover {
    background: rgba(255, 255, 255, .08);
}

.navSep {
    color: rgba(255, 255, 255, .35);
    padding: 0 4px;
}

@media (max-width: 760px) {
    .navInner {
        flex-wrap: nowrap
    }

    .navToggle {
        display: flex
    }

    .navLinks {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        gap: 6px;
        margin-top: 10px
    }

    body.navOpen .navLinks {
        display: flex
    }

    .navSep {
        display: none
    }

    .navInner a {
        width: 100%
    }
}


/* Player bar (replaces old ticker) */
.playerBar {
    background: #000;
    box-shadow: var(--shadow);
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.playerBarInner {
    max-width: var(--wrapW);
    margin: 0 auto;
    padding: 8px 10px;
}

.playerBar iframe {
    display: block;
}

.wrap {
    max-width: var(--wrapW);
    margin: 0 auto;
    padding: 14px 10px 30px;
}

.layout {
    display: grid;
    grid-template-columns: var(--sideW) 1fr var(--sideW);
    gap: 18px;
    align-items: start;
}

@media (max-width: 1080px) {
    :root {
        --wrapW: 1500px;
        --sideW: 240px;
    }
}

@media (max-width: 900px) {
    .layout {
        grid-template-columns: 1fr;
    }
}

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
    border: var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.cardHead {
    background: var(--bar);
    color: var(--barText);
    padding: 10px 12px;
    font-weight: 900;
    font-size: 13px;
}

.cardBody {
    background: linear-gradient(180deg, var(--panel2), var(--panel));
    padding: 12px;
    color: #e9eef9;
}

.cardBody.centered {
    text-align: center;
}

.djSideCenter {
    display: flex;
    justify-content: center;
}

.cardBody img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* "Ook te beluisteren via" slideshow */
.ppLvWrap {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(0, 0, 0, .20);
    border: 1px solid rgba(255, 255, 255, .08);
}

.ppLvTrack {
    display: flex;
    width: 100%;
    transition: transform .45s ease;
    will-change: transform;
}

.ppLvSlide {
    flex: 0 0 100%;
    padding: 10px;
}

.ppLvLink {
    display: block;
    text-decoration: none;
    color: #fff;
}

.ppLvImg {
    width: 100%;
    height: 110px;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    background: rgba(0, 0, 0, .25);
}

.ppLvCap {
    font-size: 12px;
    opacity: .9;
    margin-top: 8px;
    text-align: center;
}

.ppLvDots {
    display: flex;
    gap: 6px;
    justify-content: center;
    padding: 10px 8px 12px;
}

.ppLvDot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .12);
    cursor: pointer;
}

.ppLvDot.active {
    background: rgba(255, 255, 255, .75);
    border-color: rgba(255, 255, 255, .75);
}

/* Vrienden van */
.vriendenIntro {
    font-size: 14px;
    line-height: 1.55;
}

.vriendenGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.vriendenCard {
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .18);
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .28);
}

.vriendenCard {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.vriendenCard:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .22);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .38);
}

.vriendenCard:active {
    transform: translateY(0);
}

.vriendenLogoWrap {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .08);
    overflow: hidden;
}

.vriendenLogoWrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vriendenName {
    margin-top: 10px;
    text-align: center;
    font-weight: 800;
    color: #fff;
    opacity: .95;
    font-size: 13px;
}

@media (max-width: 980px) {
    .vriendenGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .vriendenGrid {
        grid-template-columns: 1fr;
    }

    .vriendenLogoWrap {
        height: 120px;
    }
}

.small {
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.45;
}

.hr {
    height: 1px;
    background: rgba(255, 255, 255, .18);
    margin: 10px 0;
}

.mainTitle {
    text-align: center;
    font-weight: 900;
    font-size: 28px;
    padding: 14px 12px;
    background: var(--bar);
    color: var(--barText);
}

.mainBody {
    background: linear-gradient(180deg, var(--panel2), var(--panel));
    padding: 18px 18px 22px;
}

.mainBody p {
    margin: 10px 0;
}

.mainBody a {
    color: var(--gold);
}

.djCard {
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    color: #111;
    max-width: 210px;
    margin: 0 auto;
}

.djCard .tag {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #d70000;
    color: #fff;
    font-weight: 900;
    font-size: 12px;
}

.btn {
    display: inline-block;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(0, 0, 0, .35);
    color: #fff;
}

.btn:hover {
    background: rgba(255, 255, 255, .12);
}

.footer {
    max-width: var(--wrapW);
    margin: 0 auto;
    padding: 16px 10px 26px;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    text-align: center;
}

.topHeaderRel {
    position: relative
}

.djDisplayWrap {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: 220px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .45);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: var(--shadow);
}

.djDisplayWrap.right {
    right: 18px;
    left: auto;
}

.djDisplayWrap.left {
    left: 18px;
    right: auto;
}

/* Native DJ display (no iframe) */
.djdisp {
    background: rgba(0, 0, 0, .10);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.djdispTop {
    padding: 8px 8px 0;
    display: flex;
    justify-content: flex-end;
}

.djdispBadge {
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .6px;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(0, 0, 0, .35);
}

.djdispBadge.live {
    background: linear-gradient(#d00000, #8b0000);
    border-color: rgba(255, 255, 255, .16);
}

.djdispBadge.off {
    background: rgba(255, 255, 255, .12);
}

.djdispBody {
    padding: 10px 10px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.djdispImg {
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .45);
    border: 3px solid rgba(255, 210, 74, .85);
}

.djdispName {
    font-weight: 900;
    text-align: center;
    color: var(--barText);
    text-shadow: 0 2px 0 rgba(0, 0, 0, .6);
}

.djdispReq {
    color: #cfe0ff;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 980px) {
    .djDisplayWrap {
        display: none;
    }
}


.teamGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    justify-items: center;
}

.teamCard {
    width: 100%;
    max-width: 240px;
}

.teamCard {
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

.teamImg {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 auto 12px auto;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid var(--gold);
    background: #0b1220;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teamImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.teamImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.teamImgPh {
    font-weight: 900;
    color: #fff;
    opacity: .7
}

.teamName {
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 2px 0 rgba(0, 0, 0, .6);
}

@media (max-width: 980px) {
    .teamGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .teamGrid {
        grid-template-columns: 1fr;
    }
}


.schedule {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.scheduleRow {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .10);
}

.schedulePhoto {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid var(--gold);
    background: #0b1220;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedulePhoto img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.schedulePh {
    color: #fff;
    opacity: .7;
    font-weight: 900
}

.scheduleTop {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center
}

.scheduleDay {
    font-weight: 900;
    color: #fff
}

.scheduleTime {
    font-weight: 900;
    color: var(--gold)
}

.scheduleDj {
    margin-top: 2px;
    color: #dfe8ff;
    font-weight: 700
}


/* DJ Display (built-in) */

.djdisp2 {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(0, 0, 0, .35);
    border: 2px solid rgba(255, 255, 255, .12);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .45)
}

.djdisp2Img {
    width: 100%;
    aspect-ratio: 1/1;
    background: #111 center/cover no-repeat;
    border: 2px solid #f0c400;
    border-radius: 16px;
    margin: 12px auto 10px;
    width: calc(100% - 24px)
}

.djdisp2Bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px 12px;
    background: rgba(0, 0, 0, .45);
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.djdisp2Badge {
    font-weight: 900;
    letter-spacing: .5px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    color: #fff;
    background: #666;
    flex: 0 0 auto
}

.djdisp2Badge.live {
    background: #b10000
}

.djdisp2Badge.off {
    background: #777
}

.djdisp2Marquee {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    flex: 1;
    min-width: 0;
}

.djdisp2Marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: djmarquee 14s linear infinite
}

@keyframes djmarquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-100%)
    }
}


/* Verzoekjes form */

.notice {
    padding: 12px 14px;
    border-radius: 12px;
    margin: 12px 0;
    font-weight: 800
}

.notice.warn {
    background: rgba(177, 0, 0, .25);
    border: 1px solid rgba(177, 0, 0, .5)
}

.reqForm {
    margin-top: 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 14px
}

.reqRow {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.reqRow:last-child {
    border-bottom: none
}

.reqIcon {
    width: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .9
}

.reqRow input,
.reqRow textarea {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 16px;
    padding: 6px 0
}

.reqRow textarea {
    resize: vertical;
    min-height: 90px
}

.reqActions {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px
}

.btnReq {
    background: #0a4a8a;
    color: #fff;
    border: 0;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .35)
}

.waBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1)
}

.btnWa {
    display: inline-block;
    background: #25D366;
    color: #052;
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .35)
}

.btnWaOn {
    background: #25D366;
    color: #052
}

.btnWaOff {
    background: #b10000;
    color: #fff;
    opacity: .9;
    cursor: not-allowed;
    pointer-events: none
}


/* Programmering */

.schedDay {
    margin-top: 14px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(0, 0, 0, .25)
}

.schedDayHead {
    background: rgba(10, 74, 138, .95);
    padding: 10px 12px;
    font-weight: 900
}

.schedList {
    padding: 6px 0
}

.schedRow {
    display: grid;
    grid-template-columns: 140px 1fr 220px;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-top: 1px solid rgba(255, 255, 255, .07)
}

.schedRow:first-child {
    border-top: none
}

.schedTime {
    font-weight: 900;
    color: #f0c400
}

.schedTitle {
    font-weight: 800
}

.schedDj {
    justify-self: end;
    opacity: .9
}

@media (max-width: 860px) {
    .schedRow {
        grid-template-columns: 1fr;
        gap: 6px
    }

    .schedDj {
        justify-self: start
    }
}

@media (max-width: 1040px) {
    .topHeader {
        max-width: var(--wrapW);
        width: 100%;
        margin: 0 auto;
        padding: 0;
        background: #000;
        overflow: hidden;
    }

    .topHeader img {
        width: 100%;
        height: 330px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
        background: #000;
    }
}

.schedRow.active {
    outline: 2px solid rgba(240, 196, 0, .8);
    background: rgba(240, 196, 0, .08)
}

/* Header banner */
.heroHeader {
    max-width: var(--wrapW);
    width: 100%;
    margin: 0 auto;
    background: #000;
}

.heroHeader img {
    width: 100%;
    height: 330px;
    display: block;
    object-fit: contain;
    background: #000;
}


/* Center DJ display on main site */
.djdisp2Wrap {
    display: flex;
    justify-content: center
}

.djdisp2Wrap .djdisp2 {
    margin: 0 auto
}


/* Blue page title bar (missing on some pages) */
.pageTitle {
    background: linear-gradient(180deg, #1f39c6, #162a93);
    border-radius: 14px;
    padding: 16px 18px;
    margin: 0 0 18px 0;
    color: #fff;
    font-weight: 800;
    letter-spacing: .2px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
}

/* Programmering – tabs + timeline */
.scheduleTabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 10px 0 18px 0;
}

.scheduleTabs button {
    border: 1px dashed rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
}

.scheduleTabs button.active {
    border-style: solid;
    background: rgba(255, 255, 255, .14);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .25);
}

.scheduleDayTitle {
    color: #fff;
    font-weight: 800;
    margin: 6px 0 4px 0;
}

.scheduleList {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 10px;
}

.scheduleItem {
    display: flex;
    gap: 16px;
    padding: 22px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.scheduleTimeBubble {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    background: rgba(80, 180, 255, .95);
    color: #08223a;
    flex: 0 0 58px;
}

.scheduleItemMain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    min-width: 0;
}

.scheduleItemName {
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.scheduleItemRange {
    color: rgba(255, 255, 255, .70);
    font-size: 13px;
}

.scheduleItem.current {
    background: rgba(255, 255, 255, .06);
}

@media (max-width: 600px) {
    .scheduleItem {
        padding: 16px 2px;
    }

    .scheduleTimeBubble {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }
}

/* v55 header: stretch image horizontally to sidebar-to-sidebar width WITHOUT changing header height */
.topHeader::before {
    display: none !important;
    content: none !important;
}

.topHeader {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #000 !important;
    overflow: hidden !important;
}

.topHeaderInner {
    max-width: var(--wrapW) !important;
    margin: 0 auto !important;
    padding: 0 10px !important;
    position: relative !important;
}

.topHeader img {
    width: 100% !important;
    height: 330px !important;
    object-fit: fill !important;
    object-position: center center !important;
    display: block !important;
    margin: 0 auto !important;
    background: #000 !important;
}

@media (max-width: 640px) {
    .topHeader img {
        height: 260px !important;
    }
}

.kbps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 5px 10px;
    /* minder blauwe ruimte */
}

.kbps-button {
    display: block;
    width: 100%;
}

.kbps-button img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.12);
    /* maakt hem optisch groter */
    transition: 0.25s ease;
}

.kbps-button:hover img {
    transform: scale(1.18);
    filter: drop-shadow(0 0 10px #ffd700);

}

/* New layout (LuckyJoe-style cards) - COMPACT */
.artistNewsList{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* 2 kolommen op desktop zodat het netter oogt */
@media (min-width: 980px){
  .artistNewsList{
    grid-template-columns: 1fr 1fr;
  }
}

.artistNewsCard{
  display:flex;
  gap: 14px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  overflow: hidden;
}

/* Kleinere thumbnail kolom */
.artistNewsImage{
  display:block;
  width: 260px;
  flex: 0 0 260px;
  background: rgba(0,0,0,.25);
}

.artistNewsImage img{
  width:100%;
  height:160px;          /* vaste compacte hoogte */
  object-fit:cover;
  display:block;
}

.artistNewsContent{
  padding: 12px 12px 12px 0;
  flex:1;
  min-width: 0;
}

.artistNewsHeading{
  display:block;
  color:#ffcf00;
  font-weight:800;
  text-decoration:none;
  font-size:16px;
  line-height:1.25;
  margin-top: 10px;
}
.artistNewsHeading:hover{ text-decoration: underline; }

.artistNewsMetaLine{
  opacity:.85;
  font-size:12px;
  margin-top:6px;
}

/* Excerpt kort houden (2 regels) */
.artistNewsExcerpt{
  margin-top:8px;
  opacity:.95;
  line-height:1.45;
  font-size:13px;
  max-height: 40px;
  overflow:hidden;
}

.artistNewsActions{
  margin-top:10px;
  padding-bottom: 10px;
}

.artistNewsBtn{
  display:inline-block;
  background:#ff8a00;
  color:#000;            /* beter leesbaar */
  font-weight:800;
  text-decoration:none;
  padding: 7px 12px;
  border-radius: 8px;
  font-size:12px;
  letter-spacing:.2px;
}
.artistNewsBtn:hover{ filter: brightness(1.06); }

/* Mobiel: onder elkaar */
@media (max-width: 740px){
  .artistNewsCard{ flex-direction: column; }
  .artistNewsImage{ width: 100%; flex: 0 0 auto; }
  .artistNewsImage img{ height: 200px; }
  .artistNewsContent{ padding: 12px; }
  .artistNewsHeading{ margin-top: 0; }
}