/* NLM Schedule Plugin Styles — v2.0
   Navy #0F172A | Amber #FFBC7D | Slate #1E293B
   Fonts: Montserrat (headings), Lato (body) */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Lato:wght@400;500&display=swap');

.nlm-schedule-wrapper {
    background: #0F172A;
    padding: 3rem 2rem;
    font-family: 'Lato', sans-serif;
    color: #fff;
}

.nlm-schedule-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFBC7D;
    margin: 0 0 0.5rem 0;
}

.nlm-schedule-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.nlm-schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255,255,255,0.07);
    border-radius: 6px;
    overflow: hidden;
}

.nlm-schedule-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    background: #0F172A;
    transition: background 0.2s ease;
}

.nlm-schedule-item:hover {
    background: #141f2e;
}

.nlm-schedule-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1E293B;
    padding: 1.25rem 0.5rem;
    border-right: 3px solid #FFBC7D;
    text-align: center;
    transition: background 0.2s ease;
}

.nlm-schedule-item:hover .nlm-schedule-date-badge {
    background: #243447;
}

.nlm-date-month {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FFBC7D;
    line-height: 1;
}

.nlm-date-day {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.nlm-date-year {
    font-family: 'Lato', sans-serif;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.4;
}

.nlm-schedule-body {
    padding: 1.1rem 1.25rem;
}

.nlm-event-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.45rem 0;
    line-height: 1.3;
}

.nlm-schedule-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-bottom: 0.4rem;
}

.nlm-meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.nlm-meta-item svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    stroke: #FFBC7D;
    opacity: 0.85;
}

.nlm-location {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.nlm-location:hover {
    color: #FFBC7D;
}

.nlm-description {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
    margin-top: 0.3rem;
}

.nlm-description p { margin: 0; }

.nlm-schedule-empty {
    padding: 2.5rem;
    text-align: center;
    color: rgba(255,255,255,0.35);
    font-style: italic;
    font-size: 0.9rem;
}

.nlm-schedule-footer {
    margin-top: 1.5rem;
    text-align: right;
}

.nlm-schedule-cta {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFBC7D;
    text-decoration: none;
    border: 1px solid rgba(240,180,41,0.4);
    padding: 0.5rem 1.1rem;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.nlm-schedule-cta:hover {
    background: #FFBC7D;
    color: #0F172A;
    border-color: #FFBC7D;
}

@media (max-width: 540px) {
    .nlm-schedule-wrapper { padding: 2rem 1rem; }
    .nlm-schedule-item { grid-template-columns: 68px 1fr; }
    .nlm-schedule-date-badge { padding: 1rem 0.35rem; }
    .nlm-date-day { font-size: 1.5rem; }
    .nlm-schedule-body { padding: 0.85rem 1rem; }
    .nlm-schedule-meta { flex-direction: column; gap: 0.35rem; }
}
