/**
 * WPLake Events - Frontend Styles
 */

/* ============================================
   Variables
   ============================================ */
:root {
    --wplake-primary: #2563eb;
    --wplake-primary-dark: #1d4ed8;
    --wplake-secondary: #64748b;
    --wplake-success: #10b981;
    --wplake-danger: #ef4444;
    --wplake-text: #1e293b;
    --wplake-text-light: #64748b;
    --wplake-border: #e2e8f0;
    --wplake-bg: #f8fafc;
    --wplake-white: #ffffff;
    --wplake-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --wplake-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --wplake-radius: 8px;
    --wplake-radius-lg: 12px;
}
.flex {
    display: flex;
    gap: 20px;
}
/* ============================================
   Container
   ============================================ */
.wplake-events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Archive Header
   ============================================ */
.wplake-events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--wplake-border);
}

/* ============================================
   Events Sections
   ============================================ */
.wplake-events-section {
    margin-bottom: 50px;
}

.wplake-events-section:last-child {
    margin-bottom: 0;
}

.wplake-events-section-title {
    margin: 0 0 25px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--wplake-text);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--wplake-primary);
}

.wplake-events-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--wplake-text);
}

.wplake-events-archive-calendar {
    margin-bottom: 40px;
}

/* Calendar + list: sidebar — events left, calendar right */
.wplake-events-archive-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 32px;
    align-items: start;
    margin-bottom: 24px;
}

.wplake-events-archive-split-main {
    min-width: 0;
}

.wplake-events-archive-split-aside {
    min-width: 0;
}

/* Sağ sütun: takvim */
.wplake-events-archive-split-aside-calendar .wplake-events-archive-calendar {
    margin-bottom: 0;
    position: sticky;
    top: 24px;
}

.wplake-events-archive-split-main-events .wplake-events-section-title {
    font-size: 1.15rem;
}

.wplake-events-archive-sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wplake-events-archive-split-main-events .wplake-events-section {
    margin-bottom: 28px;
}

.wplake-events-archive-split-main-events .wplake-events-section:last-child {
    margin-bottom: 0;
}

.wplake-events-archive-split-main-events .wplake-events-section .wplake-events-section-title {
    padding-bottom: 10px;
    margin-bottom: 16px;
}

.wplake-events-archive-split-main-events .wplake-events-list {
    gap: 16px;
}

@media (max-width: 992px) {
    .wplake-events-archive-split {
        grid-template-columns: 1fr;
    }

    .wplake-events-archive-split-aside-calendar .wplake-events-archive-calendar {
        position: static;
    }
}

.wplake-events-archive, .wplake-events-container{
    padding: 50px 0;
}
/* Category archive: back link and header left (taxonomy-event_category.php) */
.wplake-events-archive.wplake-events-archive-category .wplake-events-header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wplake-events-archive.wplake-events-archive-category .wplake-back-to-events {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    color: var(--wplake-text-light);
    text-decoration: none;
}

.wplake-events-archive.wplake-events-archive-category .wplake-back-to-events:hover {
    color: var(--wplake-primary);
}

.wplake-ical-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--wplake-bg);
    border: 1px solid var(--wplake-border);
    border-radius: var(--wplake-radius);
    color: var(--wplake-text);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.wplake-ical-link:hover {
    background: var(--wplake-primary);
    border-color: var(--wplake-primary);
    color: var(--wplake-white);
}

/* ============================================
   Category Filter
   ============================================ */
.wplake-events-cat-filter {
    flex-shrink: 0;
}

.wplake-cat-select {
    appearance: none;
    -webkit-appearance: none;
    padding: 8px 36px 8px 14px;
    border: 1px solid var(--wplake-border);
    border-radius: var(--wplake-radius);
    background-color: var(--wplake-white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5'%3E%3Cpolyline points='0.5,0.5 4,4 7.5,0.5' fill='none' stroke='%2364748b' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 13px;
    background-position: right 12px center;
    font-size: 14px;
    color: var(--wplake-text);
    cursor: pointer;
    transition: border-color 0.2s ease;
    min-width: 180px;
}

.wplake-cat-select:focus {
    outline: none;
    border-color: var(--wplake-primary);
}

.wplake-cat-select:hover {
    border-color: var(--wplake-primary);
}

/* ============================================
   Events List
   ============================================ */
.wplake-events-list {
    display: grid;
    gap: 20px;
}

.wplake-events-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.wplake-events-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.wplake-events-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .wplake-events-columns-2,
    .wplake-events-columns-3,
    .wplake-events-columns-4 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Event Item (Archive)
   ============================================ */
.wplake-event-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--wplake-white);
    border: 1px solid var(--wplake-border);
    border-radius: var(--wplake-radius-lg);
    transition: all 0.2s ease;
}

.wplake-event-item:hover {
    box-shadow: var(--wplake-shadow-lg);
    border-color: var(--wplake-primary);
}

.wplake-event-date-badge {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    background: var(--wplake-primary);
    border-radius: var(--wplake-radius);
    color: var(--wplake-white);
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.wplake-event-day {
    font-size: 24px;
    font-weight: 700;
    line-height: 1rem;
}

.wplake-event-month {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1rem;
}

.wplake-event-year {
    font-size: 11px;
    opacity: 0.8;
    line-height: 1rem;
}

.wplake-event-content {
    flex: 1;
    display: flex;
    gap: 20px;
}

.wplake-event-thumbnail {
    flex-shrink: 0;
    width: 200px;
}

.wplake-event-thumbnail img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--wplake-radius);
}

.wplake-event-details {
    flex: 1;
}

.wplake-event-title {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: 600;
}

.wplake-event-title a {
    color: var(--wplake-text);
    text-decoration: none;
}

.wplake-event-title a:hover {
    color: var(--wplake-primary);
}

.wplake-event-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.wplake-event-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--wplake-text-light);
}

.wplake-event-meta-item .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.wplake-event-meta-item a {
    color: var(--wplake-text-light);
    text-decoration: none;
}

.wplake-event-meta-item a:hover {
    color: var(--wplake-primary);
}

.wplake-event-excerpt {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--wplake-text-light);
    line-height: 1.6;
}

.wplake-event-more-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--wplake-primary);
    text-decoration: none;
}

.wplake-event-more-link:hover {
    color: var(--wplake-primary-dark);
}

/* ============================================
   Event Card (Shortcode)
   ============================================ */
.wplake-event-card {
    background: var(--wplake-white);
    border: 1px solid var(--wplake-border);
    border-radius: var(--wplake-radius-lg);
    overflow: hidden;
    transition: all 0.2s ease;
}

.wplake-event-card:hover {
    box-shadow: var(--wplake-shadow-lg);
    transform: translateY(-2px);
}

.wplake-event-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.wplake-event-card-content {
    padding: 20px;
}

.wplake-event-card-date {
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--wplake-primary);
}

.wplake-event-card-date .wplake-event-time {
    color: var(--wplake-text-light);
}

.wplake-event-card-date .wplake-event-time::before {
    content: " · ";
}

.wplake-event-card-title {
    margin: 0 0 12px;
    font-size: 1.125rem;
    font-weight: 600;
}

.wplake-event-card-title a {
    color: var(--wplake-text);
    text-decoration: none;
}

.wplake-event-card-title a:hover {
    color: var(--wplake-primary);
}

.wplake-event-card-venue,
.wplake-event-card-cost {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--wplake-text-light);
}

.wplake-event-card-venue .dashicons,
.wplake-event-card-cost .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

.wplake-event-card-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.wplake-event-category,
.wplake-event-category-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--wplake-bg);
    border-radius: 20px;
    font-size: 12px;
    color: var(--wplake-text-light);
    text-decoration: none;
}

.wplake-event-category:hover,
.wplake-event-category-tag:hover {
    background: var(--wplake-primary);
    color: var(--wplake-white);
}

/* ============================================
   Single Event
   ============================================ */
.wplake-single-event {
    padding: 0;
}
.wplake-custom-content-body {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.wplake-custom-content-body img {
    max-width: 100%;
    height: auto;
}

.wplake-back-to-events {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--wplake-bg);
    border: 1px solid var(--wplake-border);
    border-radius: var(--wplake-radius);
    color: var(--wplake-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.wplake-back-to-events:hover {
    background: var(--wplake-primary);
    border-color: var(--wplake-primary);
    color: var(--wplake-white);
}

.wplake-back-to-events .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.wplake-event-featured-image {
    margin-bottom: 40px;
}

.wplake-event-featured-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--wplake-radius-lg);
}

.wplake-single-event .wplake-event-title {
    font-size: 2rem;
    margin: 0 0 15px;
}

.wplake-event-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

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

.wplake-event-main {
    min-width: 0;
    overflow: hidden;
}

.wplake-event-content {
    line-height: 1.8;
    color: var(--wplake-text);
}

/* Custom content (Elementor/WP Editor) eventlerde içerik alanı */
.wplake-single-event-custom-content .wplake-event-main {
    overflow: visible;
}

/* Custom content sidebar: kartlar yatay sıralanır */
.wplake-event-sidebar-inline {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.wplake-custom-content-sidebar-section {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}

.wplake-event-back-section {
    padding-top: 20px;
    padding-bottom: 0;
}

/* ============================================
   Event Sidebar
   ============================================ */
.wplake-event-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wplake-event-info-box,
.wplake-event-actions,
.wplake-event-share,
.wplake-event-venue-card {
    padding: 24px;
    background: var(--wplake-white);
    border: 1px solid var(--wplake-border);
    border-radius: var(--wplake-radius-lg);
}

.wplake-event-info-box h3,
.wplake-event-actions h3,
.wplake-event-share h3,
.wplake-event-venue-card h3 {
    margin: 0 0 20px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--wplake-text);
}

.wplake-info-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--wplake-border);
}

.wplake-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.wplake-info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--wplake-text-light);
}

.wplake-info-value {
    font-size: 15px;
    color: var(--wplake-text);
}

.wplake-info-value a {
    color: var(--wplake-primary);
    text-decoration: none;
}

.wplake-info-value a:hover {
    text-decoration: underline;
}

/* ============================================
   Buttons
   ============================================ */
.wplake-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: var(--wplake-radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--wplake-primary);
    color: var(--wplake-white);
}

.wplake-button:hover {
    background: var(--wplake-primary-dark);
    color: var(--wplake-white);
    text-decoration: none;
}

.wplake-button-google {
    background: var(--wplake-primary);
    color: var(--wplake-white);
}

.wplake-button-google:hover {
    background: var(--wplake-primary-dark);
    color: var(--wplake-white);
}

.wplake-button-ical {
    background: var(--wplake-bg);
    color: var(--wplake-text);
    border: 1px solid var(--wplake-border);
}

.wplake-button-ical:hover {
    background: var(--wplake-primary);
    border-color: var(--wplake-primary);
    color: var(--wplake-white);
}

.wplake-button-block {
    width: 100%;
}

.wplake-button-large {
    padding: 16px 24px;
    font-size: 16px;
}

.wplake-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* ============================================
   Share Buttons
   ============================================ */
.wplake-share-buttons {
    display: flex;
    gap: 10px;
}

.wplake-share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--wplake-radius);
    color: var(--wplake-white);
    text-decoration: none;
    transition: all 0.2s ease;
}

.wplake-share-facebook {
    background: #1877f2;
}

.wplake-share-twitter {
    background: #1da1f2;
}

.wplake-share-linkedin {
    background: #0a66c2;
}

.wplake-share-whatsapp {
    background: #25d366;
}

.wplake-share-button:hover {
    opacity: 0.8;
    transform: scale(1.05);
    color: var(--wplake-white);
}

/* ============================================
   Event Navigation
   ============================================ */
.wplake-event-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--wplake-border);
}

.wplake-nav-prev,
.wplake-nav-next {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--wplake-bg);
    border-radius: var(--wplake-radius);
    text-decoration: none;
    transition: all 0.2s ease;
    max-width: 45%;
}

.wplake-nav-next {
    margin-left: auto;
    text-align: right;
}

.wplake-nav-prev:hover,
.wplake-nav-next:hover {
    background: var(--wplake-primary);
}

.wplake-nav-prev:hover *,
.wplake-nav-next:hover * {
    color: var(--wplake-white) !important;
}

.wplake-nav-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--wplake-text-light);
}

.wplake-nav-title {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--wplake-text);
}

/* ============================================
   Venue Section
   ============================================ */
.wplake-event-venue-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--wplake-border);
}

.wplake-event-venue-section h3 {
    margin: 0 0 20px;
    font-size: 1.25rem;
    font-weight: 600;
}

.wplake-venue-details {
    margin-bottom: 20px;
}

.wplake-venue-name {
    margin: 0 0 10px;
    font-size: 1.125rem;
}

.wplake-venue-name a {
    color: var(--wplake-text);
    text-decoration: none;
}

.wplake-venue-name a:hover {
    color: var(--wplake-primary);
}

.wplake-venue-address,
.wplake-venue-phone,
.wplake-venue-website {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--wplake-text-light);
}

.wplake-venue-address a,
.wplake-venue-phone a,
.wplake-venue-website a {
    color: var(--wplake-primary);
    text-decoration: none;
}

.wplake-venue-map {
    height: 300px;
    border-radius: var(--wplake-radius);
    background: var(--wplake-bg);
}

.wplake-venue-map-iframe {
    margin-top: 20px;
    width: 100%;
    border-radius: var(--wplake-radius);
    overflow: hidden;
}

.wplake-venue-map-iframe iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: none;
    border-radius: var(--wplake-radius);
}

/* ============================================
   Single Venue
   ============================================ */
.wplake-single-venue {
    padding: 40px 0;
}

.wplake-venue-header {
    margin-bottom: 30px;
}

.wplake-venue-featured-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--wplake-radius-lg);
    margin-bottom: 20px;
}

.wplake-venue-title {
    margin: 0 0 10px;
    font-size: 2rem;
    font-weight: 700;
}

.wplake-venue-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--wplake-text-light);
}

.wplake-venue-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

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

.wplake-venue-main {
    min-width: 0;
}

.wplake-venue-content {
    line-height: 1.8;
    margin-bottom: 30px;
}

.wplake-venue-map-section {
    margin-bottom: 30px;
}

.wplake-venue-map-section h3 {
    margin: 0 0 15px;
    font-size: 1.25rem;
    font-weight: 600;
}

.wplake-venue-events {
    margin-top: 30px;
}

.wplake-venue-events h3 {
    margin: 0 0 20px;
    font-size: 1.25rem;
    font-weight: 600;
}

.wplake-venue-events-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wplake-venue-event-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--wplake-bg);
    border-radius: var(--wplake-radius);
}

.wplake-venue-event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--wplake-primary);
    border-radius: var(--wplake-radius);
    color: var(--wplake-white);
}

.wplake-venue-event-date .wplake-day {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.wplake-venue-event-date .wplake-month {
    font-size: 10px;
    text-transform: uppercase;
}

.wplake-venue-event-info h4 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 500;
}

.wplake-venue-event-info h4 a {
    color: var(--wplake-text);
    text-decoration: none;
}

.wplake-venue-event-info h4 a:hover {
    color: var(--wplake-primary);
}

.wplake-venue-event-time {
    font-size: 13px;
    color: var(--wplake-text-light);
}

.wplake-venue-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wplake-venue-info-box {
    padding: 24px;
    background: var(--wplake-white);
    border: 1px solid var(--wplake-border);
    border-radius: var(--wplake-radius-lg);
}

.wplake-venue-info-box h3 {
    margin: 0 0 20px;
    font-size: 1.125rem;
    font-weight: 600;
}

.wplake-venue-directions {
    margin-top: 20px;
}

/* ============================================
   Calendar
   ============================================ */
.wplake-calendar {
    background: var(--wplake-white);
    border: 1px solid var(--wplake-border);
    border-radius: var(--wplake-radius-lg);
    overflow: hidden;
}

.wplake-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--wplake-primary);
    color: var(--wplake-white);
}

.wplake-calendar-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.wplake-calendar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--wplake-radius);
    color: var(--wplake-white);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s ease;
}

.wplake-calendar-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--wplake-white);
}

.wplake-calendar-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.wplake-calendar-table th {
    padding: 12px 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--wplake-text-light);
    background: var(--wplake-bg);
    border-bottom: 1px solid var(--wplake-border);
}

.wplake-calendar-table td {
    padding: 8px;
    vertical-align: top;
    border: 1px solid var(--wplake-border);
    min-height: 88px;
    max-height: 140px;
    overflow: hidden;
}

.wplake-calendar-empty {
    background: var(--wplake-bg);
}

.wplake-calendar-day-number {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--wplake-text);
    border-radius: 50%;
}

.wplake-calendar-today .wplake-calendar-day-number {
    background: var(--wplake-primary);
    color: var(--wplake-white);
}

.wplake-calendar-day-events {
    margin-top: 6px;
    max-height: 4.5em;
    overflow: hidden;
}

.wplake-calendar-event-link {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding: 4px 8px;
    margin-bottom: 4px;
    background: var(--wplake-primary);
    border-radius: 4px;
    font-size: 11px;
    color: var(--wplake-white);
    text-decoration: none;
    line-height: 1.3;
    overflow: hidden;
    word-break: break-word;
    white-space: normal;
}

.wplake-calendar-event-link:hover {
    background: var(--wplake-primary-dark);
    color: var(--wplake-white);
}

/* ============================================
   Pagination
   ============================================ */
.wplake-events-pagination {
    margin-top: 40px;
}

.wplake-events-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.wplake-events-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--wplake-white);
    border: 1px solid var(--wplake-border);
    border-radius: var(--wplake-radius);
    font-size: 14px;
    color: var(--wplake-text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.wplake-events-pagination .page-numbers:hover,
.wplake-events-pagination .page-numbers.current {
    background: var(--wplake-primary);
    border-color: var(--wplake-primary);
    color: var(--wplake-white);
}

/* ============================================
   No Events
   ============================================ */
.wplake-no-events {
    padding: 60px 20px;
    text-align: center;
    background: var(--wplake-bg);
    border-radius: var(--wplake-radius-lg);
}

.wplake-no-events p {
    margin: 0;
    font-size: 16px;
    color: var(--wplake-text-light);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .wplake-events-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .wplake-event-item {
        flex-direction: column;
    }
    
    .wplake-event-content {
        flex-direction: column;
    }
    
    .wplake-event-thumbnail {
        width: 100%;
    }
    
    .wplake-event-thumbnail img {
        height: 200px;
    }
    
    .wplake-single-event .wplake-event-title,
    .wplake-venue-title {
        font-size: 1.5rem;
    }
    
    .wplake-event-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .wplake-nav-prev,
    .wplake-nav-next {
        max-width: 100%;
    }
    
    .wplake-calendar-table td {
        padding: 4px;
    }
    
    .wplake-calendar-day-events {
        display: none;
    }
    
    .wplake-calendar-has-events .wplake-calendar-day-number {
        background: var(--wplake-primary);
        color: var(--wplake-white);
    }
}
