/* Blog Specific Styles */
.blog-header {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 30, 0.95) 100%);
    padding: 5rem 0 3rem;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.category-filter {
    background: rgba(26, 26, 46, 0.4);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: sticky;
    top: 90px;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-item:hover,
.category-item.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-color);
    transform: translateX(5px);
}

.category-item .count {
    background: rgba(212, 175, 55, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-card {
    background: rgba(26, 26, 46, 0.4);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold-color);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

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

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--gold-color);
}

.blog-card-excerpt {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.blog-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-card-meta-item i {
    color: var(--gold-color);
}

.featured-post {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 3rem;
    transition: opacity 0.4s ease;
    opacity: 1;
}

.featured-post .row {
    min-height: 400px;
}

.featured-post-image-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.featured-post-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-post-image-link:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-post .blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1.5rem;
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.featured-post .blog-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
    justify-content: center;
    padding: 0.75rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.featured-post .blog-card-meta-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.featured-post .blog-card-meta-item i {
    font-size: 1.1rem;
    color: var(--gold-color);
}

.featured-post .blog-card-meta-item span {
    font-weight: 500;
    font-size: 1rem;
}

.featured-badge {
    background: var(--gold-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(26, 26, 46, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination li a:hover,
.pagination li.active a {
    background: var(--gold-color);
    color: var(--primary-color);
    border-color: var(--gold-color);
    transform: translateY(-2px);
}

/* Blog Single Post Styles */
.blog-single-header {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 30, 0.95) 100%);
    padding: 4rem 0 2rem;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.blog-single-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.blog-single-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.blog-single-hero-image {
    position: relative;
    padding-top: 50%; /* 2:1 Aspect Ratio */
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-single-hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-single-hero-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gold-color);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.blog-single-hero-meta {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.blog-single-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-single-hero-meta-item i {
    color: var(--gold-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.blog-single-hero-meta-item:hover {
    color: var(--gold-color);
    transform: translateY(-2px);
}

.blog-single-hero-meta-item span {
    font-weight: 500;
}

.blog-single-content {
    background: rgba(26, 26, 46, 0.4);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 2rem;
}

.blog-single-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.blog-single-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.blog-single-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.blog-single-meta-item i {
    color: var(--gold-color);
    font-size: 1.1rem;
}

.blog-single-body {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    font-size: 1.1rem;
}

.blog-single-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.blog-single-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-single-body h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-single-body p {
    margin-bottom: 1.5rem;
}

.blog-single-body ul,
.blog-single-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-single-body li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.blog-single-body a {
    color: var(--gold-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.blog-single-body a:hover {
    color: #fff;
    border-bottom-color: var(--gold-color);
}

.blog-single-body blockquote {
    border-left: 4px solid var(--gold-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(212, 175, 55, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
}

.blog-single-body code {
    background: rgba(26, 26, 46, 0.8);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--gold-color);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.blog-single-body pre {
    background: rgba(15, 15, 30, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.blog-single-body pre code {
    background: transparent;
    padding: 0;
    border: none;
    color: rgba(255, 255, 255, 0.9);
}

.blog-single-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.blog-single-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.blog-single-share-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-right: 0.5rem;
}

.blog-single-share-buttons {
    display: flex;
    gap: 0.75rem;
}

.blog-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-share-btn:hover {
    background: var(--gold-color);
    color: var(--primary-color);
    border-color: var(--gold-color);
    transform: translateY(-2px);
}

.blog-author-card {
    background: rgba(26, 26, 46, 0.4);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin: 3rem 0;
}

.blog-author-info h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.blog-author-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    line-height: 1.6;
}

.blog-related-posts {
    margin-top: 4rem;
}

.blog-related-posts-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.blog-related-posts-title i {
    color: var(--gold-color);
}

.blog-sidebar {
    position: sticky;
    top: 90px;
}

.blog-sidebar-widget {
    background: rgba(26, 26, 46, 0.4);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 2rem;
}

.blog-sidebar-widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.blog-sidebar-widget-title i {
    color: var(--gold-color);
}

.blog-sidebar-post {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-sidebar-post:last-child {
    border-bottom: none;
}

.blog-sidebar-post:hover {
    transform: translateX(5px);
}

.blog-sidebar-post-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.blog-sidebar-post-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-sidebar-post-content .meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-sidebar-post-content .meta i {
    color: var(--gold-color);
    font-size: 0.75rem;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.blog-tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: var(--gold-color);
    color: var(--primary-color);
    border-color: var(--gold-color);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .category-filter {
        position: static;
        margin-bottom: 2rem;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .blog-single-title {
        font-size: 1.75rem;
    }
    
    .blog-single-content {
        padding: 2rem 1.5rem;
    }
    
    .blog-author-card {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-single-hero-meta {
        padding: 1.25rem 1.5rem;
        gap: 1.5rem;
    }
    
    .blog-single-hero-meta-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .blog-single-hero-meta {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 1rem;
        align-items: flex-start;
    }
    
    .blog-single-hero-meta-item {
        width: 100%;
    }
}

