/* Notification Management page specific styles */
.learn-hero {
    background-color: var(--pale-blue-light);
    padding: calc(64px + var(--space-xxl)) 0 var(--space-xxl);
    text-align: center;
}

.learn-hero h1 {
    margin-bottom: var(--space-md);
}

.article-content {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: var(--space-xl);
}

.article-content h2 {
    margin-top: var(--space-xl);
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: var(--space-lg) 0;
}

.article-content p {
    line-height: 1.6;
}

.article-content ul,
.article-content ol {
    margin: var(--space-lg) 0;
    padding-left: var(--space-xl);
}

.article-content li {
    margin-bottom: var(--space-md);
}

.article-meta {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--light-gray);
}

.article-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--cool-slate);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-sm);
    color: var(--white);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 500;
}

.publish-date {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.article-share {
    margin-left: auto;
}

.share-btn {
    background: none;
    border: none;
    color: var(--cool-slate);
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.callout {
    background-color: var(--pale-blue-light);
    border-left: 3px solid var(--pale-blue);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Sidebar styles moved to article-sidebar-layout.css */
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: var(--space-sm);
}

.toc-list a {
    display: block;
    padding: var(--space-xs) 0;
    color: var(--cool-slate);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.toc-list a:hover {
    color: var(--warm-red);
}

.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-list li {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--light-gray);
}

.related-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-list a {
    display: block;
    font-weight: 500;
    color: var(--cool-slate);
    margin-bottom: var(--space-xs);
}

.related-meta {
    font-size: 0.75rem;
    color: var(--medium-gray);
}

.notification-levels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
}

.notification-level {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: var(--space-lg);
    border-top: 4px solid var(--pale-blue);
    text-align: center;
}

.level-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--pale-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.level-icon i {
    font-size: 2rem;
    color: var(--pale-blue);
}

.level-title {
    margin-top: 0;
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.level-description {
    font-size: 0.9rem;
    margin: 0;
    text-align: left;
}

.practice-card {
    background-color: var(--light-gray);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    border-left: 4px solid var(--pale-blue);
}

.practice-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.practice-icon {
    margin-right: var(--space-md);
    background-color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.practice-icon i {
    color: var(--pale-blue);
}

.practice-title {
    margin: 0;
    font-size: 1.2rem;
}

.practice-steps {
    margin: var(--space-md) 0 0;
    padding-left: calc(40px + var(--space-md));
}

.practice-steps li {
    margin-bottom: var(--space-sm);
}

.notification-screenshots {
    display: flex;
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
    justify-content: center;
    flex-wrap: wrap;
}

.screenshot {
    max-width: 250px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.screenshot img {
    max-width: 100%;
    display: block;
}

.screenshot-caption {
    background-color: var(--light-gray);
    padding: var(--space-sm);
    text-align: center;
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.source-link {
    display: block;
    padding: var(--space-sm) 0;
    margin-top: var(--space-xs);
    font-size: 0.75rem;
    color: var(--medium-gray);
}

.stat-highlight {
    font-size: 2rem;
    color: var(--warm-red);
    font-weight: 700;
    margin: var(--space-xs) 0;
    display: block;
    font-family: var(--heading-font);
}

.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: var(--space-xl) 0;
    width: 100%;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    height: 600px; /* Fixed height */
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    background: #f1f1f1;
    padding-top: 0; /* Remove percentage padding */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.video-caption {
    margin-top: var(--space-md);
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-align: center;
    max-width: 350px;
    width: 100%;
}

/* Five Minute Solution Box */
.five-minute-box {
    background-color: var(--it-gold-light);
    border: 2px solid var(--it-gold);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    text-align: center;
}

.five-minute-box h2 {
    color: var(--cool-slate);
    margin-top: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.five-minute-box h2 i {
    margin-right: var(--space-sm);
}

.five-minute-box p {
    margin-bottom: 0;
}

@media (max-width: 992px) {    
    /* Mobile sidebar layout moved to article-sidebar-layout.css */
    
    .notification-levels {
        grid-template-columns: 1fr;
    }
    
    .notification-levels {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .notification-levels {
        grid-template-columns: 1fr;
    }
}