/* Blog-specific styles */

.blog-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-color) 100%);
    color: #fff;
}

.blog-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.blog-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.blog-hero .breadcrumb-item.active,
.blog-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

.blog-hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.blog-hero p {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    opacity: 0.9;
}

/* Blog listing */
.blog-listing {
    padding: 60px 0 80px;
    background: #f8f9fa;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

.blog-card > a img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-tag {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.blog-tag--event {
    background: var(--accent-color);
}

.blog-card-body h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    flex-grow: 1;
}

.blog-card-body h2 a {
    color: inherit;
    text-decoration: none;
}

.blog-card-body h2 a:hover {
    color: var(--primary-color);
}

.blog-card-body p {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    transition: gap 0.2s ease;
}

.blog-read-more:hover {
    gap: 0.7rem;
    color: var(--dark-purple);
}

/* Single article page */
.article-hero {
    padding: 120px 0 50px;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-color) 100%);
    color: #fff;
}

.article-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.article-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.article-hero .breadcrumb-item.active,
.article-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

.article-hero h1 {
    font-size: clamp(1.6rem, 4.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.article-hero .article-meta {
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
}

.article-hero .article-meta i {
    margin-right: 0.3rem;
}

.article-body {
    padding: 60px 0 80px;
}

.article-content {
    max-width: 760px;
    margin: 0 auto;
}

.article-content h2 {
    color: var(--dark-purple);
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.article-content h3 {
    color: var(--primary-color);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    margin: 1.8rem 0 0.75rem;
}

.article-content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.article-content ul, .article-content ol {
    color: #444;
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.article-content ul li, .article-content ol li {
    margin-bottom: 0.4rem;
}

.article-content .highlight-box {
    background: linear-gradient(135deg, rgba(107,43,137,0.07) 0%, rgba(74,144,226,0.07) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
}

.article-content .highlight-box p {
    margin: 0;
    font-weight: 500;
}

.article-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0 0;
}

.article-cta h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.article-cta p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.article-cta .btn {
    background: #fff;
    color: var(--primary-color);
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-cta .btn:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    color: var(--dark-purple);
}

.related-articles {
    padding: 60px 0;
    background: #f8f9fa;
}

.related-articles h2 {
    color: var(--dark-purple);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
