:root {
    --nt-primary: #0f172a;
    --nt-accent-zoom: #2563eb;
    --nt-accent-live: #16a34a;
    --nt-surface: #ffffff;
    --nt-bg: #f8fafc;
    --nt-text-main: #334155;
    --nt-text-muted: #64748b;
    --nt-border: #e2e8f0;
    --nt-radius-lg: 16px;
    --nt-radius-md: 8px;
    --nt-radius-pill: 9999px;
    --nt-shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --nt-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

.nt-meetings-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--nt-text-main);
    line-height: 1.5;
}

/* Typography */
.nt-meetings-header {
    text-align: center;
    margin-bottom: 48px;
}
.nt-meetings-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--nt-primary);
    margin-bottom: 8px;
    letter-spacing: -0.025em;
}
.nt-meetings-subtitle {
    font-size: 1.125rem;
    color: var(--nt-text-muted);
}

/* Grid Archive */
.nt-meetings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.nt-meeting-card {
    background: var(--nt-surface);
    border-radius: var(--nt-radius-lg);
    padding: 24px;
    border: 1px solid var(--nt-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--nt-shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.nt-meeting-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--nt-shadow-lg);
    border-color: transparent;
}

.nt-meeting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.nt-meeting-card.zoom::before { background: var(--nt-accent-zoom); }
.nt-meeting-card.live::before { background: var(--nt-accent-live); }

.nt-meeting-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--nt-radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    align-self: flex-start;
}
.nt-meeting-card.zoom .nt-meeting-badge { background: #eff6ff; color: var(--nt-accent-zoom); }
.nt-meeting-card.live .nt-meeting-badge { background: #f0fdf4; color: var(--nt-accent-live); }

.nt-meeting-topic {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}
.nt-meeting-topic a { color: var(--nt-primary); text-decoration: none; }
.nt-meeting-topic a:hover { color: var(--nt-accent-zoom); }

.nt-meeting-meta {
    margin-bottom: 24px;
    flex-grow: 1;
}
.nt-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--nt-text-muted);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

/* Buttons */
.nt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--nt-radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    width: 100%;
    box-sizing: border-box;
}
.nt-btn-primary {
    background: var(--nt-accent-zoom);
    color: white;
}
.nt-btn-primary:hover { background: #1d4ed8; color: white; }

.nt-btn-secondary {
    background: var(--nt-accent-live);
    color: white;
}
.nt-btn-secondary:hover { background: #15803d; color: white; }

.nt-btn-outline {
    background: transparent;
    border: 1px solid var(--nt-border);
    color: var(--nt-primary);
}
.nt-btn-outline:hover { background: #f1f5f9; }

/* Single View */
.nt-meeting-hero {
    background: var(--nt-surface);
    border-radius: var(--nt-radius-lg);
    padding: 64px 32px;
    text-align: center;
    border: 1px solid var(--nt-border);
    margin-bottom: 32px;
    box-shadow: var(--nt-shadow-sm);
    position: relative;
    overflow: hidden;
}
.nt-meeting-pill {
    display: inline-block;
    padding: 8px 16px;
    background: #f1f5f9;
    color: var(--nt-primary);
    border-radius: var(--nt-radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.nt-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--nt-primary);
    line-height: 1.1;
}
.nt-hero-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    color: var(--nt-text-muted);
}
.nt-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nt-meeting-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}
.nt-meeting-action-card {
    background: var(--nt-surface);
    padding: 32px;
    border-radius: var(--nt-radius-lg);
    border: 1px solid var(--nt-border);
    position: sticky;
    top: 32px;
    box-shadow: var(--nt-shadow-lg);
}
.nt-meeting-action-card h3 {
    margin-top: 0;
    color: var(--nt-primary);
    font-size: 1.25rem;
    margin-bottom: 24px;
}
.nt-action-details {
    margin-bottom: 24px;
    padding: 16px;
    background: var(--nt-bg);
    border-radius: var(--nt-radius-md);
    border: 1px solid var(--nt-border);
}
.nt-action-details p {
    margin: 0 0 12px 0;
    font-size: 0.875rem;
    color: var(--nt-text-muted);
}
.nt-action-details strong {
    color: var(--nt-primary);
    display: block;
    margin-bottom: 4px;
}
.nt-action-details p:last-child { margin: 0; }

.nt-meeting-description h3 {
    font-size: 1.5rem;
    color: var(--nt-primary);
    margin-bottom: 16px;
}

/* Sidebar Shortcode Teaser widget styling */
.nt-teaser-widget {
    background: var(--nt-surface);
    border: 1px solid var(--nt-border);
    border-radius: var(--nt-radius-lg);
    padding: 24px;
    box-shadow: var(--nt-shadow-lg);
    position: relative;
    overflow: hidden;
}
/* Colored top border removed per user request */

.nt-teaser-header {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--nt-text-muted);
    margin-bottom: 12px;
}
.nt-teaser-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: var(--nt-primary);
    line-height: 1.3;
}
.nt-teaser-meta {
    font-size: 0.875rem;
    color: var(--nt-text-muted);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .nt-meeting-content-grid { grid-template-columns: 1fr; }
    .nt-hero-title { font-size: 2rem; }
    .nt-meeting-hero { padding: 32px 20px; }
}

/* Extracted Inline Styles */

.nt-meetings-shortcode-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.nt-meetings-wrap-shortcode {
    padding: 0;
    width: 100%;
}
.nt-teaser-widget {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.nt-teaser-watermark {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: right 16px top 16px;
    background-size: 7% auto;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}
.nt-teaser-header {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: var(--nt-text-muted);
    margin-bottom: 6px;
}
.nt-teaser-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--nt-primary);
    line-height: 1.3;
}
.nt-teaser-title a {
    color: inherit;
    text-decoration: none;
}
.nt-teaser-text {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 16px;
}
.nt-teaser-meta {
    margin-bottom: 24px;
    color: var(--nt-text-muted);
    font-size: 0.875rem;
}

/* Red Pulse CTA Button */
.nt-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff !important;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 16px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    animation: ntPulseRed 2s infinite;
}
.nt-cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4) !important;
    background: linear-gradient(135deg, #f87171, #ef4444) !important;
}
.nt-cta-btn:hover svg {
    transform: translateX(4px);
}
.nt-cta-btn svg {
    transition: transform 0.3s ease;
}
@keyframes ntPulseRed {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

/* Single Hero & Calendar Sheet */
.nt-hero-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    background-size: cover;
    background-position: center;
    filter: blur(12px);
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
}
.nt-hero-content {
    position: relative;
    z-index: 1;
}
.nt-meeting-pill {
    margin-bottom: 32px;
}
.nt-calendar-sheet {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    border: 1px solid var(--nt-border);
    width: 120px;
    text-align: center;
    margin: 0 auto 32px auto;
    display: flex;
    flex-direction: column;
    transform: rotate(-3deg);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}
.nt-calendar-sheet:hover {
    transform: rotate(1deg) scale(1.05);
}
.nt-calendar-header {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 10px 0 8px 0;
    letter-spacing: 0.05em;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}
.nt-calendar-day {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--nt-primary);
    line-height: 1;
    padding: 16px 0 4px 0;
    letter-spacing: -0.05em;
}
.nt-calendar-weekday {
    font-size: 0.75rem;
    color: var(--nt-text-muted);
    text-transform: uppercase;
    padding-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Graphic Buttons & Extras */
.nt-graphic-btn-wrap {
    display: block;
    text-align: left;
    margin-top: 24px;
}
.nt-graphic-btn-img {
    max-width: 200px;
    width: 80%;
    height: auto;
    transition: transform 0.2s ease;
}
.nt-graphic-btn-img:hover {
    transform: scale(1.02);
}
.nt-empty-desc {
    color: var(--nt-text-muted);
    font-style: italic;
}
.nt-meeting-excerpt {
    font-size: 0.9rem;
    color: var(--nt-text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}
