@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #64b5f6;
}


.vtt-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-left: 5px;
    vertical-align: middle;
    font-weight: bold;
}


/* List View Specific CSS */
body {
    color: #2c3e50;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fc 100%);
}

.search-section {
    padding: 40px 0 30px;
}

.search-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    border: 1px solid #e8f1fb;
    animation: expandSearch 0.5s ease-out;
}

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

.section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.section-title i {
    color: #3498db;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.search-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: flex-end;
}

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

.search-input-group {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border-radius: 12px;
    padding: 0 20px;
    border: 2px solid #e1e8f0;
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.search-input-group i {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-right: 15px;
}

.search-input {
    flex: 1;
    padding: 18px 0;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    color: #2c3e50;
    outline: none;
}

.search-input::placeholder {
    color: #95a5a6;
}

.search-button {
    padding: 18px 40px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.search-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-label {
    font-weight: 600;
    color: #5d6d7e;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select,
.filter-input {
    padding: 15px;
    border: 2px solid #e1e8f0;
    border-radius: 10px;
    font-size: 1rem;
    color: #2c3e50;
    background: #f8fafc;
    transition: all 0.3s ease;
    outline: none;
}

.filter-select:focus,
.filter-input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.filter-select {
    cursor: pointer;
}

.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #e8f1fb;
}

.results-count {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
}

.results-count span {
    color: #3498db;
    font-weight: 700;
}

.clear-filters {
    padding: 10px 20px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clear-filters:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px 0 40px;
}

.card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbfe 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    border: 1px solid #e8f1fb;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: #d1e3f8;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
}

.card-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5d6d7e;
    font-size: 0.95rem;
}

.card-meta-item i {
    color: #3498db;
    width: 16px;
    flex-shrink: 0;
}

.card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #7f8c8d;
    margin-bottom: 10px;
    width: fit-content;
    border: 1px solid #e5e8e8;
}

.card-date i {
    color: #f39c12;
}

.view-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f1f8ff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 15px;
    width: fit-content;
    border: 1px solid #d1e3f8;
}

.view-counter i {
    font-size: 0.9rem;
}

.view-counter.popular {
    background: #e8f6f3;
    color: #27ae60;
    border-color: #a3e4d7;
}

.view-counter.high-views {
    background: #fef9e7;
    color: #f39c12;
    border-color: #f8e4a2;
}

.view-counter.low-views {
    background: #f8f9fa;
    color: #7f8c8d;
    border-color: #e5e8e8;
}

.card-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.keyword-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #f1f8ff;
    color: #3498db;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #d1e3f8;
}

.keyword-tag:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    border-color: #3498db;
}

.keyword-tag i {
    font-size: 0.8rem;
}

.low-views { color: #7f8c8d; }
.medium-views { color: #f39c12; }
.high-views { color: #e74c3c; }
.popular-views { color: #27ae60; }

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

    .search-container {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .card-content {
        padding: 20px;
    }

    .view-counter {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .card-date {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
}


/* Detail View Specific CSS - Keep ALL your original CSS here */
body {
    color: white;
    position: relative;
    background: #0f172a;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://picsum.photos/1920/1080?random=1');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--overlay) 0%, rgba(45, 55, 72, 0.9) 100%);
    z-index: 2;
}

.container {
    position: relative;
    z-index: 3;
}

.article-container {
    max-width: 900px;
    margin: 40px auto;
    animation: fadeIn 0.5s ease;
}

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

.article-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid #e8f1fb;
}

.article-hero {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-hero img {
    transform: scale(1.02);
}

.article-content {
    padding: 50px;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.article-description {
    font-size: 1.2rem;
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e8f1fb;
}

.meta-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 40px;
    border: 1px solid #e8f1fb;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #ffffff;
    border: 1px solid #e8f1fb;
}

.meta-item:hover {
    background: #f1f8ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.meta-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.meta-content {
    flex: 1;
}

.meta-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7f8c8d;
    margin-bottom: 5px;
    font-weight: 600;
}

.meta-value {
    display: block;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
    line-height: 1.5;
}

.files-section {
    background: #f8fafc;
    border-radius: 16px;
    padding: 35px;
    margin-top: 30px;
    border: 1px solid #e8f1fb;
}

.files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.file-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    border: 1px solid #e8f1fb;
}

.file-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: #3498db;
    background: #f1f8ff;
}

.file-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.file-info {
    flex: 1;
}

.file-name {
    font-weight: 500;
    margin-bottom: 5px;
}

.file-size {
    font-size: 0.85rem;
    color: #7f8c8d;
}

/* Dark Theme for Detail View */
:root {
    --theme-color: #3498db;
    --accent-color: #2ecc71;
    --light-bg: rgba(248, 250, 252, 0.95);
    --text-dark: #1e293b;
    --text-light: #64748b;
    --overlay: rgba(26, 54, 93, 0.85);
}

.article-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.header-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--theme-color) 0%, var(--accent-color) 100%);
    border-radius: 0 0 0 100%;
    opacity: 0.4;
    z-index: -1;
}

.date-place {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.date-place::before {
    content: "📍";
}

h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.subtitle {
    font-size: 1.4rem;
    color: #e2e8f0;
    font-weight: 600;
    margin-bottom: 2rem;
    border-left: 4px solid var(--theme-color);
    padding-left: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.author {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

/* Comment Button Styles */
.comment-button-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.show-comment-form-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(45deg, var(--theme-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.show-comment-form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.show-comment-form-btn:active {
    transform: translateY(-1px);
}

.show-comment-form-btn i {
    font-size: 1.3rem;
}

.show-comment-form-btn.hide-comment-form {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.show-comment-form-btn.hide-comment-form i {
    transform: rotate(45deg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /*transition: transform 0.3s ease, background 0.3s ease;*/
}

.stat-card:hover {
    /*transform: translateY(-5px);*/
    /*background: rgba(255, 255, 255, 0.15);*/
}

.stat-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.sections-container {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

.section-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 6px solid;
    transition: transform 0.3s ease;
}

.section-card:hover {
    /*transform: translateX(5px);*/
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.points-list {
    list-style: none;
}

.points-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.points-list li:last-child {
    border-bottom: none;
}

.points-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--theme-color);
    font-weight: bold;
}

.quotes-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.quotes-section::before {
    content: "❝";
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 4rem;
    color: var(--theme-color);
    opacity: 0.5;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    color: white;
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid var(--accent-color);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 12px 12px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
}

.keyword {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.files {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.file-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--theme-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
}

.file-link:hover {
    transform: translateY(-2px);
    background: var(--accent-color);
}

.comment-system {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: none; /* Hidden by default */
    animation: slideDown 0.4s ease-out;
}

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

/* Comment Form Enhancements */
.submit-comment-btn {
    background: linear-gradient(45deg, var(--theme-color), var(--accent-color));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-comment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.submit-comment-btn i {
    font-size: 1.2rem;
}

.comment-system h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.comment-form .form-group {
    margin-bottom: 1.5rem;
}

.comment-form label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

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

.message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.message.success {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.message.error {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.comments-section {
    margin-top: 3rem;
}

.comment {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-author {
    font-weight: 600;
    color: white;
}

.comment-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.comment-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .article-header {
        padding: 2rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .article-content {
        padding: 30px;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-hero {
        height: 250px;
    }

    .article-description {
        padding: 20px;
    }

    .meta-card {
        padding: 25px;
    }

    .meta-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .files-grid {
        grid-template-columns: 1fr;
    }

    .show-comment-form-btn {
        padding: 12px 24px;
        font-size: 1.1rem;
    }

    .comment-system {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .meta-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .meta-icon {
        margin-bottom: 10px;
    }

    .show-comment-form-btn {
        width: 100%;
        justify-content: center;
    }
}