/* Layout & Container Reset */
.main-inner-content {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.view-all-link {
    color: #e60067;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.view-all-link:hover {
    color: #ffffff;
}

/* Sectie 1: Top Widgets (Programmering + Banner) */
.front-top-widgets {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

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

/* Programmering Widget */
.schedule-widget-box {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 16px;
    padding: 1.5rem;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    background: #1f2937;
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    gap: 1.25rem;
    transition: background 0.2s ease;
}

.schedule-item:hover {
    background: #374151;
}

.schedule-time {
    background: #0b0f19;
    color: #e60067;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    white-space: nowrap;
}

.schedule-info {
    color: #ffffff;
    font-size: 0.95rem;
}

/* Promo Banner Widget */
.promo-widget-box {
    display: flex;
}

.promo-card {
    background: linear-gradient(135deg, #e60067 0%, #8b003e 100%);
    border-radius: 16px;
    padding: 2rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    box-shadow: 0 10px 25px rgba(230, 0, 103, 0.25);
}

.promo-tag {
    background: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    align-self: flex-start;
    margin-bottom: 1rem;
}

.promo-card h3 {
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
}

.promo-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.btn-primary-pill {
    background: #ffffff;
    color: #e60067;
    font-weight: 700;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-align: center;
    transition: transform 0.2s ease, background 0.2s ease;
    align-self: flex-start;
}

.btn-primary-pill:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

/* Sectie 2: Nieuws Grid */
.news-section {
    margin-top: 1rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

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

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

.news-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: #374151;
}

.news-card-thumb {
    width: 100%;
    height: 180px;
    overflow: hidden;
    display: block;
}

.news-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-thumb img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-date {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.news-card-title {
    font-size: 1.15rem;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.news-card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-card-title a:hover {
    color: #e60067;
}

.news-excerpt {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.read-more-link {
    color: #e60067;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}

.read-more-link:hover {
    text-decoration: underline;
}

/* Snelmenu Widget Box */
.quick-menu-widget-box {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

/* WordPress Menu Lijst-reset */
.quick-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
}

.quick-menu-list li a {
    display: flex;
    align-items: center;
    background: #1f2937;
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    position: relative;
}

/* Subtiele pijl toevoegen aan de rechterkant */
.quick-menu-list li a::after {
    content: "→";
    position: absolute;
    right: 1.25rem;
    color: #e60067;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.quick-menu-list li a:hover {
    background: #2d3748;
    border-color: #e60067;
    transform: translateX(4px);
}

.quick-menu-list li a:hover::after {
    transform: translateX(3px);
}
