/* ========================================
   BLOG STYLES - Tour in Barca Theme
   Version: 3.0.0 - Updated with sample design
   ======================================== */

/* Variables */
:root {
    --blog-primary: #3068b3;
    --blog-primary-dark: #2a5ba1;
    --blog-accent: #f79448;
    --blog-accent-dark: #e8843f;
    --blog-text: #333;
    --blog-text-muted: #666;
    --blog-text-light: #999;
    --blog-bg: rgba(255, 255, 255, 0.95);
    --blog-border: rgba(224, 224, 224, 0.5);
    --blog-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    --blog-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Blog Main Layout */
.blog-main {
    min-height: 100vh;
    padding: 30px 0;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Breadcrumb */
.blog-breadcrumb {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    flex-wrap: wrap;
}

.blog-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-breadcrumb a:hover {
    color: white;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

/* Blog Wrapper */
.blog-wrapper {
    background: var(--blog-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--blog-shadow);
}

/* Blog Header */
.blog-header {
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--blog-primary) 0%, #4a7bc8 100%);
    text-align: center;
    color: white;
}

.blog-header-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out;
}

.blog-header-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease-out 0.1s;
    animation-fill-mode: both;
}

/* Blog Content Area */
.blog-content-area {
    padding: 50px 40px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

/* Blog Card */
.blog-card {
    background: var(--blog-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--blog-shadow);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--blog-shadow-hover);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Blog Card Image */
.blog-card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blog-accent) 0%, var(--blog-accent-dark) 100%);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.blog-card-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 20px;
}

.blog-card-placeholder svg {
    margin-bottom: 15px;
    opacity: 0.5;
}

.blog-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--blog-text);
    transition: all 0.3s ease;
}

.blog-card:hover .blog-card-category {
    background: var(--blog-accent);
    color: white;
}

/* Blog Card Content */
.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--blog-text-light);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-meta svg {
    opacity: 0.6;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--blog-text);
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

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

.blog-card-excerpt {
    font-size: 15px;
    color: var(--blog-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blog-primary);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-card:hover .read-more-btn {
    color: var(--blog-accent);
    gap: 12px;
}

/* Single Article Container */
.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
}

.article-single {
    animation: fadeIn 0.6s ease-out;
}

/* Article Header */
.article-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background: var(--blog-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--blog-accent), var(--blog-accent-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 148, 72, 0.3);
    color: white;
}

.article-title {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    color: #666;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta svg {
    opacity: 0.6;
}

/* ========================================
   ARTICLE GALLERY - SAMPLE DESIGN
   ======================================== */
.article-gallery {
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.gallery-image-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.gallery-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image-item:hover {
    z-index: 1;
}

.gallery-image-item:hover img {
    transform: scale(1.05);
}

.gallery-image-item:first-child,
.gallery-image-item.gallery-main-image {
    grid-column: span 2;
    grid-row: span 2;
}

/* Gallery Placeholder */
.gallery-placeholder {
    background: linear-gradient(135deg, #f79448 0%, #e8843f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

.gallery-placeholder.gallery-main-image {
    font-size: 18px;
}

.gallery-placeholder .placeholder-text {
    line-height: 1.4;
}

/* Article Featured Image */
.article-featured-image {
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Body */
.article-body {
    background: var(--blog-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 17px;
    color: #444;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-body h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--blog-text);
    margin: 40px 0 20px 0;
    position: relative;
    padding-left: 20px;
}

.article-body h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--blog-accent), var(--blog-accent-dark));
    border-radius: 2px;
}

.article-body h3 {
    font-size: 22px;
    font-weight: 600;
    color: #444;
    margin: 30px 0 15px 0;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body blockquote {
    border-left: 4px solid var(--blog-accent);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--blog-text-muted);
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.article-body strong {
    font-weight: 700;
    color: var(--blog-text);
}

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

.article-body a:hover {
    border-bottom-color: var(--blog-primary);
}

/* Article Tags */
.article-tags {
    padding: 25px;
    background: var(--blog-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tags-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--blog-text-muted);
    font-weight: 600;
}

.tags-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tags-list a {
    display: inline-block;
    padding: 6px 15px;
    background: #f0f4f8;
    border-radius: 20px;
    font-size: 13px;
    color: var(--blog-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tags-list a:hover {
    background: var(--blog-accent);
    color: white;
    transform: translateY(-2px);
}

/* Article Share */
.article-share {
    padding: 30px;
    background: var(--blog-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-share h3 {
    font-size: 20px;
    color: var(--blog-text);
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--blog-border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--blog-text-muted);
}

.share-button:hover {
    transform: translateY(-3px);
    border-color: transparent;
}

.share-facebook:hover {
    background: #1877f2;
    color: white;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.share-twitter:hover {
    background: #1da1f2;
    color: white;
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}

.share-linkedin:hover {
    background: #0077b5;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.share-whatsapp:hover {
    background: #25d366;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.share-copy:hover {
    background: var(--blog-accent);
    color: white;
    box-shadow: 0 4px 12px rgba(247, 148, 72, 0.3);
}

/* ========================================
   COMMENTS SECTION - SAMPLE DESIGN
   ======================================== */

/* Success Message */
.success-message {
    background: #4caf50;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    animation: slideIn 0.3s ease;
}

.success-message.show {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Comments Section */
.comments-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.comments-header {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(247, 148, 72, 0.2);
}

.comment-count {
    color: #f79448;
    font-weight: 800;
}

/* Comment Form - Updated responsive logic */
.comment-form-wrapper {
    background: rgba(248, 249, 250, 0.8);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(224, 224, 224, 0.3);
}

.comment-form-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.comment-form-group {
    margin-bottom: 20px;
}

.comment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Logged-in user info */
.logged-in-as {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(224, 224, 224, 0.3);
}

.logged-in-as a {
    color: #f79448;
    text-decoration: none;
    font-weight: 600;
}

.logged-in-as a:hover {
    text-decoration: underline;
}

.required-field-message {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}

.required {
    color: #dc3545;
    font-weight: bold;
}

.comment-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.comment-form-group input,
.comment-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(224, 224, 224, 0.5);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.comment-form-group input:focus,
.comment-form-group textarea:focus {
    outline: none;
    border-color: #f79448;
    box-shadow: 0 0 0 3px rgba(247, 148, 72, 0.1);
    background: white;
}

.comment-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    gap: 15px;
}

.char-counter {
    font-size: 13px;
    color: #999;
    flex-shrink: 0;
}

.char-counter.warning {
    color: #e8843f;
}

.char-counter.error {
    color: #d32f2f;
}

.comment-submit-btn {
    background: linear-gradient(135deg, #f79448, #e8843f);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-submit-btn:hover {
    background: linear-gradient(135deg, #e8843f, #d7743a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 148, 72, 0.3);
}

.comment-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.comment-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(224, 224, 224, 0.3);
    transition: all 0.3s ease;
    list-style: none;
    margin-bottom: 25px;
}

.comment-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.comment-header-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.comment-avatar .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.comment-avatar .avatar-initial {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f79448, #e8843f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.comment-author-info {
    flex: 1;
}

.comment-author {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.comment-date {
    font-size: 13px;
    color: #999;
}

.comment-date a {
    color: #999;
    text-decoration: none;
}

.comment-date a:hover {
    color: #f79448;
}

.comment-content {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 15px;
}

.comment-actions {
    display: flex;
    gap: 20px;
}

.comment-action-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    text-decoration: none;
    display: inline-block;
}

.comment-action-btn:hover {
    color: #f79448;
}

.comment-like-btn.liked {
    color: #f79448;
}

.comment-like-btn.liked:before {
    content: '❤️ ';
}

/* No Comments */
.no-comments {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-comments-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-comments-text {
    font-size: 18px;
    margin-bottom: 10px;
}

.no-comments-subtext {
    font-size: 14px;
}

/* Article Navigation */
.article-navigation {
    margin: 40px 0;
    padding: 30px;
    background: var(--blog-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.article-navigation a {
    display: block;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--blog-text);
}

.article-navigation a:hover {
    background: linear-gradient(135deg, var(--blog-accent), var(--blog-accent-dark));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 148, 72, 0.3);
}

.nav-direction {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    opacity: 0.7;
}

.nav-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

/* Related Posts */
.related-posts {
    margin: 60px 0;
}

.related-posts h3 {
    font-size: 28px;
    color: var(--blog-text);
    text-align: center;
    margin-bottom: 40px;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 50px;
    text-align: center;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: white;
    border-radius: 8px;
    color: var(--blog-text);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--blog-border);
}

.blog-pagination .page-numbers:hover {
    background: var(--blog-accent);
    color: white;
    border-color: var(--blog-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 148, 72, 0.3);
}

.blog-pagination .page-numbers.current {
    background: var(--blog-primary);
    color: white;
    border-color: var(--blog-primary);
}

.blog-pagination .prev,
.blog-pagination .next {
    padding: 0 15px;
}

/* No Posts Found */
.no-posts-found {
    text-align: center;
    padding: 60px 20px;
}

.no-posts-icon {
    margin-bottom: 30px;
}

.no-posts-found h2 {
    font-size: 28px;
    color: var(--blog-text);
    margin-bottom: 15px;
}

.no-posts-found p {
    color: var(--blog-text-muted);
    margin-bottom: 30px;
    font-size: 16px;
}

.no-posts-found .btn {
    background: linear-gradient(135deg, var(--blog-primary), var(--blog-primary-dark));
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.no-posts-found .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(48, 104, 179, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .blog-container {
        padding: 0 15px;
    }
    
    .article-container {
        padding: 15px;
    }
    
    .blog-header {
        padding: 30px 20px;
    }
    
    .blog-header-title {
        font-size: 28px;
    }
    
    .blog-header-subtitle {
        font-size: 16px;
    }
    
    .blog-content-area {
        padding: 30px 20px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-image-item:first-child,
    .gallery-image-item.gallery-main-image {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .article-title {
        font-size: 28px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-body {
        padding: 30px 20px;
        font-size: 16px;
    }
    
    .article-body h2 {
        font-size: 24px;
    }
    
    .article-navigation .nav-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comments-section {
        padding: 25px 20px;
    }
    
    .comment-form-wrapper {
        padding: 25px 20px;
    }
    
    .comment-form-row {
        grid-template-columns: 1fr;
    }
    
    .comment-meta-row {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .comment-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .blog-breadcrumb {
        font-size: 12px;
    }
    
    .blog-card-title {
        font-size: 20px;
    }
    
    .blog-card-excerpt {
        font-size: 14px;
    }
    
    .article-header {
        padding: 25px 20px;
    }
    
    .article-title {
        font-size: 24px;
    }
    
    .share-buttons {
        gap: 10px;
    }
    
    .share-button {
        width: 45px;
        height: 45px;
    }
}
