/* ========================================
   Article Page Styles
   Default: RTL (Arabic)
   ======================================== */

/* Container */
.article-container {
    width: 100%;
    max-width: 1234px;
    margin: 0 auto;
    padding: 30px 15px;
}

.article-container .row {
    margin: 0;
}

/* ========================================
   Main Article Content
   ======================================== */
.article-content {
    padding: 0 20px;
}

/* Article Header */
.article-header {
    margin-bottom: 20px;
}

.article-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #6c6c6c;
    margin-bottom: 10px;
}

.article-title {
    font-weight: 500;
    font-size: 26px;
    color: #303030;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Article Meta */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
}

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

.meta-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.meta-icon svg {
    width: 20px;
    height: 20px;
    color: rgba(108, 108, 108, 0.85);
}

.meta-icon img {
    width: 20px;
    height: 20px;
}

.meta-icon .icon-dark {
    display: none;
}

.meta-item time,
.meta-item span,
.meta-link {
    font-size: 14px;
    font-weight: 600;
    color: rgba(108, 108, 108, 0.85);
    text-decoration: none;
    margin: 0;
}

.meta-link:hover {
    color: var(--bs-primary);
}

/* ========================================
   Article Media
   ======================================== */
.article-media {
    margin-bottom: 20px;
}

.article-image img {
    width: 100%;
    max-height: 626px;
    min-height: 400px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.article-video {
    width: 100%;
    max-height: 626px;
    border-radius: 8px;
    overflow: hidden;
}

.article-video .video-js {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.article-video .video-js,
.article-video .vjs-control-bar {
    border-radius: 8px;
}

.article-video .vjs-poster {
    background-size: cover;
    object-fit: cover;
}

/* ========================================
   Social Share
   ======================================== */
.article-share {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

[dir="ltr"] .article-share {
    flex-direction: row;
}

.share-icon-wrapper {
    padding: 0 10px 0 0;
}

[dir="ltr"] .share-icon-wrapper {
    padding: 0 0 0 10px;
}

.share-icon-wrapper img {
    width: 20px;
    height: 20px;
}

.share-icon-wrapper .icon-dark {
    display: none;
}

.share-icon-wrapper i {
    font-size: 20px;
    color: rgba(108, 108, 108, 0.85);
    line-height: 1;
}

.share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    color: rgba(108, 108, 108, 0.85);
    text-decoration: none;
}

.share-link:visited {
    color: rgba(108, 108, 108, 0.85);
}

.share-link:focus,
.share-link:focus-visible {
    outline: none;
    box-shadow: none;
}

.share-link:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.share-link img {
    width: 24px;
    height: 24px;
}

.share-link .icon-dark {
    display: none;
}

.share-link i {
    font-size: 20px;
    color: rgba(108, 108, 108, 0.85);
    line-height: 1;
}

.share-label {
    font-weight: 600;
    font-size: 14px;
    color: rgba(108, 108, 108, 0.6);
    margin-right: auto;
    padding-left: 10px;
}

[dir="ltr"] .share-label {
    margin-right: 0;
    margin-left: auto;
    padding-left: 0;
    padding-right: 10px;
}

[data-theme="dark"] .share-icon-wrapper i,
[data-theme="dark"] .share-link i {
    color: var(--text-secondary);
}

/* ========================================
   Article Body
   ======================================== */
.article-author {
    font-size: 16px;
    color: #6c6c6c;
    margin-bottom: 15px;
}

.article-author span {
    font-weight: 600;
}

.article-body {
    font-weight: 500;
    font-size: 18px;
    color: #606060;
    line-height: 1.9;
}

.article-body img {
    width: 100%;
    border-radius: 8px;
    margin: 15px 0;
}

.article-body p {
    margin-bottom: 1rem;
}

.article-body table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.article-body table th,
.article-body table td {
    padding: 12px;
    border: 1px solid #e0e0e0;
    text-align: right;
}

.article-body table th {
    background: #f5f5f5;
    font-weight: 700;
}

/* ========================================
   Related Inner News
   ======================================== */
.article-related-inner {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.related-inner-title {
    font-size: 18px;
    font-weight: 700;
    color: #303030;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bs-primary);
}

.related-inner-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-inner-item {
    display: flex;
    gap: 15px;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-inner-item:hover {
    background: #f5f5f5;
    transform: translateX(-5px);
}

.related-inner-image {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.related-inner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-inner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.related-inner-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #303030;
    margin-bottom: 5px;
    line-height: 1.5;
}

.related-inner-content time {
    font-size: 12px;
    color: #888;
}

/* Video Badge */
.video-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-badge i {
    color: #fff;
    font-size: 12px;
    margin-left: 2px;
}

/* ========================================
   Article Gallery
   ======================================== */
.article-gallery {
    margin: 30px 0 50px;
}

.gallery-item {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

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

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

.gallery-item-large img {
    height: 200px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(to top, rgba(12, 15, 18, 0.8), transparent);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-shadow: 1px 1px 2px #000;
}

/* Gallery Photonews */
.gallery-photonews .gallery-item img {
    height: auto;
    max-height: 290px;
}

/* ========================================
   Article Tags
   ======================================== */
.article-tags {
    margin: 30px 0;
}

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

.tags-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #303030;
    margin: 0;
}

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

.tag-item {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: var(--bs-primary);
    color: #fff;
}

/* ========================================
   Comments Section
   ======================================== */
.article-comments {
    margin-top: 40px;
}

.comments-list {
    margin-bottom: 30px;
}

.comments-header,
.form-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.comments-icon,
.form-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comments-icon svg,
.form-icon svg {
    width: 24px;
    height: 24px;
    color: var(--bs-primary);
}

.comments-header h4,
.form-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #303030;
    margin: 0;
}

.comments-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment-item {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 0;
    border-right: 4px solid #555;
}

.comment-avatar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.avatar-placeholder {
    width: 40px;
    height: 40px;
    background: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.comment-author {
    font-weight: 700;
    font-size: 14px;
    color: #303030;
}

.comment-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Comment Form */
.comment-form-section {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.comment-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.comment-form .form-control:focus {
    outline: none;
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(177, 189, 82, 0.15);
}

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

.comment-form-section .alert {
    margin-bottom: 15px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 14px;
    line-height: 1.6;
}

.comment-form-section .alert-success {
    background: rgba(25, 135, 84, 0.12);
    color: #0f5132;
    border-color: rgba(25, 135, 84, 0.25);
}

.comment-form-section .alert-danger {
    background: rgba(220, 53, 69, 0.12);
    color: #842029;
    border-color: rgba(220, 53, 69, 0.25);
}

.comment-form-section .alert ul {
    margin: 0;
    padding-right: 18px;
}

.comment-toast-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.comment-toast {
    min-width: 280px;
    max-width: 360px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid transparent;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    font-size: 14px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.comment-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.comment-toast-success {
    background: #effaf3;
    color: #0f5132;
    border-color: rgba(25, 135, 84, 0.25);
}

.comment-toast-error {
    background: #fff1f3;
    color: #842029;
    border-color: rgba(220, 53, 69, 0.25);
}

@media (max-width: 768px) {
    .comment-toast-container {
        top: 14px;
        left: 14px;
        right: 14px;
    }

    .comment-toast {
        min-width: auto;
        max-width: none;
    }
}

.btn-submit {
    align-self: flex-start;
    padding: 12px 30px;
    background: var(--bs-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #9aa847;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ========================================
   Sidebar
   ======================================== */
.article-sidebar {
    padding: 0 20px;
    position: sticky;
    top: 150px;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.sidebar-icon {
    width: 32px;
    height: 32px;
}

.sidebar-icon img {
    width: 100%;
    height: 100%;
}

.sidebar-icon .icon-dark {
    display: none;
}

.sidebar-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #303030;
    margin: 0;
}

/* Sidebar Items */
.sidebar-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-item {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.sidebar-item-image {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

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

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

.sidebar-item-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #303030;
    line-height: 1.6;
    margin-bottom: 8px;
}

.sidebar-item:hover .sidebar-item-content h4 {
    color: var(--bs-primary);
}

.sidebar-item-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.date-icon img {
    width: 16px;
    height: 16px;
}

.date-icon .icon-dark {
    display: none;
}

.sidebar-item-date time {
    font-size: 12px;
    color: #888;
}

/* Sidebar Social */
.social-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-item:hover {
    transform: translateX(-5px);
}

.social-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.social-icon-wrapper i {
    font-size: 16px;
}

.social-count {
    font-weight: 600;
    font-size: 14px;
}

/* Social Colors */
.social-facebook {
    background: rgba(59, 89, 152, 0.1);
}
.social-facebook .social-icon-wrapper {
    background: #3b5998;
}
.social-facebook .social-count {
    color: #3b5998;
}

.social-twitter {
    background: rgba(29, 161, 242, 0.1);
}
.social-twitter .social-icon-wrapper {
    background: #1da1f2;
}
.social-twitter .social-count {
    color: #1da1f2;
}

.social-telegram {
    background: rgba(0, 136, 204, 0.1);
}
.social-telegram .social-icon-wrapper {
    background: #0088cc;
}
.social-telegram .social-count {
    color: #0088cc;
}

.social-youtube {
    background: rgba(255, 0, 0, 0.1);
}
.social-youtube .social-icon-wrapper {
    background: #ff0000;
}
.social-youtube .social-count {
    color: #ff0000;
}

.social-instagram {
    background: rgba(193, 53, 132, 0.1);
}
.social-instagram .social-icon-wrapper {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-instagram .social-count {
    color: #c13584;
}

/* ========================================
   Mobile Related Slider
   ======================================== */
.mobile-related-slider {
    padding: 20px 15px;
}

.slider-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.slider-icon {
    width: 32px;
    height: 32px;
}

.slider-icon img {
    width: 100%;
    height: 100%;
}

.slider-icon .icon-dark {
    display: none;
}

.slider-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #303030;
    margin: 0;
}

.related-swiper .swiper-slide {
    width: 220px;
}

.slide-item {
    display: block;
    text-decoration: none;
}

.slide-image {
    position: relative;
    width: 100%;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-title {
    font-size: 14px;
    font-weight: 600;
    color: #303030;
    line-height: 1.5;
}

/* ========================================
   Most Read Section
   ======================================== */
.most-read-section {
    padding: 30px 15px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.section-icon {
    width: 24px;
    height: 24px;
}

.section-icon img {
    width: 100%;
    height: 100%;
}

.section-icon .icon-dark {
    display: none;
}

.section-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #303030;
    margin: 0;
}

.most-read-swiper .swiper-slide {
    width: 280px;
}

.most-read-item {
    display: block;
    text-decoration: none;
}

.most-read-image {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

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

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

.most-read-title {
    font-size: 15px;
    font-weight: 600;
    color: #303030;
    line-height: 1.6;
}

.most-read-item:hover .most-read-title {
    color: var(--bs-primary);
}

.most-read-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.most-read-swiper .swiper-pagination-bullet-active {
    background: var(--bs-primary);
}

/* ========================================
   News Search Section
   ======================================== */
.news-search-section {
    padding: 30px 15px;
}

/* ========================================
   DARK MODE
   ======================================== */
[data-theme="dark"] .article-title {
    color: #e4e6eb;
}

[data-theme="dark"] .article-subtitle {
    color: #b0b3b8;
}

[data-theme="dark"] .meta-icon svg {
    color: #b0b3b8;
}

[data-theme="dark"] .meta-item time,
[data-theme="dark"] .meta-item span,
[data-theme="dark"] .meta-link {
    color: #b0b3b8;
}

[data-theme="dark"] .meta-icon .icon-light,
[data-theme="dark"] .share-icon-wrapper .icon-light,
[data-theme="dark"] .share-link .icon-light,
[data-theme="dark"] .sidebar-icon .icon-light,
[data-theme="dark"] .slider-icon .icon-light,
[data-theme="dark"] .section-icon .icon-light,
[data-theme="dark"] .date-icon .icon-light {
    display: none;
}

[data-theme="dark"] .meta-icon .icon-dark,
[data-theme="dark"] .share-icon-wrapper .icon-dark,
[data-theme="dark"] .share-link .icon-dark,
[data-theme="dark"] .sidebar-icon .icon-dark,
[data-theme="dark"] .slider-icon .icon-dark,
[data-theme="dark"] .section-icon .icon-dark,
[data-theme="dark"] .date-icon .icon-dark {
    display: block;
}

[data-theme="dark"] .article-share {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .share-label {
    color: #8a8d91;
}

[data-theme="dark"] .article-author {
    color: #b0b3b8;
}

[data-theme="dark"] .article-body {
    color: #b0b3b8;
}

[data-theme="dark"] .article-body table th,
[data-theme="dark"] .article-body table td {
    border-color: #3a3d44;
}

[data-theme="dark"] .article-body table th {
    background: #2a2d35;
}

[data-theme="dark"] .article-related-inner {
    background: #2a2d35;
}

[data-theme="dark"] .related-inner-title {
    color: #e4e6eb;
}

[data-theme="dark"] .related-inner-item {
    background: #1a1d24;
}

[data-theme="dark"] .related-inner-item:hover {
    background: #35383f;
}

[data-theme="dark"] .related-inner-content h4 {
    color: #e4e6eb;
}

[data-theme="dark"] .related-inner-content time {
    color: #8a8d91;
}

[data-theme="dark"] .tags-header h4,
[data-theme="dark"] .comments-header h4,
[data-theme="dark"] .form-header h4,
[data-theme="dark"] .sidebar-header h3,
[data-theme="dark"] .slider-header h3,
[data-theme="dark"] .section-header h3 {
    color: #e4e6eb;
}

[data-theme="dark"] .tag-item {
    background: #2a2d35;
    color: #b0b3b8;
}

[data-theme="dark"] .tag-item:hover {
    background: var(--bs-primary);
    color: #fff;
}

[data-theme="dark"] .comment-item,
[data-theme="dark"] .comment-form-section {
    background: #2a2d35;
}

[data-theme="dark"] .comment-author {
    color: #e4e6eb;
}

[data-theme="dark"] .comment-text {
    color: #b0b3b8;
}

[data-theme="dark"] .comment-form .form-control {
    background: #1a1d24;
    border-color: #3a3d44;
    color: #e4e6eb;
}

[data-theme="dark"] .comment-form .form-control::placeholder {
    color: #8a8d91;
}

[data-theme="dark"] .sidebar-item-content h4 {
    color: #e4e6eb;
}

[data-theme="dark"] .sidebar-item-date time {
    color: #8a8d91;
}

[data-theme="dark"] .slide-title,
[data-theme="dark"] .most-read-title {
    color: #e4e6eb;
}

/* ========================================
   LTR SUPPORT
   ======================================== */
[dir="ltr"] .article-share {
    flex-direction: row;
}

[dir="ltr"] .share-icon-wrapper {
    padding: 0 0 0 10px;
}

[dir="ltr"] .share-label {
    margin-left: auto;
    margin-right: 0;
    padding-right: 10px;
    padding-left: 0;
}

[dir="ltr"] .comment-item {
    border-right: none;
    border-left: 4px solid var(--bs-primary);
}

[dir="ltr"] .related-inner-item:hover,
[dir="ltr"] .sidebar-item:hover,
[dir="ltr"] .social-link-item:hover {
    transform: translateX(5px);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
    .article-content {
        padding: 0 15px;
    }
    
    .article-sidebar {
        display: none;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .article-container {
        padding: 20px 10px;
    }
    
    .article-content {
        padding: 0 10px;
    }
    
    .article-title {
        font-size: 20px;
    }
    
    .article-subtitle {
        font-size: 16px;
    }
    
    .article-meta {
        gap: 15px;
    }
    
    .meta-item {
        gap: 5px;
    }
    
    .meta-item time,
    .meta-item span,
    .meta-link {
        font-size: 12px;
    }
    
    .article-image img {
        min-height: 250px;
        max-height: 350px;
    }
    
    .article-share {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .share-label {
        text-align: center;
        padding: 0;
    }
    
    .article-body {
        font-size: 16px;
    }
    
    .related-inner-item {
        flex-direction: column;
    }
    
    .related-inner-image {
        width: 100%;
        height: 150px;
    }
    
    .gallery-item img {
        height: 100px;
    }
    
    .gallery-item-large img {
        height: 150px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .btn-submit {
        width: 100%;
    }
    
    .related-swiper .swiper-slide {
        width: 180px;
    }
    
    .slide-image {
        height: 120px;
    }
    
    .most-read-swiper .swiper-slide {
        width: 220px;
    }
    
    .most-read-image {
        height: 140px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .article-title {
        font-size: 18px;
    }
    
    
    .article-body {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .comments-header h4,
    .form-header h4 {
        font-size: 16px;
    }
    
    .sidebar-header h3,
    .slider-header h3,
    .section-header h3 {
        font-size: 16px;
    }
}

/* ========================================
   Fancybox Overrides
   ======================================== */
.f-thumbs__track {
    transform: translate3d(0px, 0px, 0px) scale(1) !important;
    flex-flow: row-reverse wrap-reverse !important;
}

.fancybox__nav .is-next {
    left: 40px !important;
    right: auto;
    transform: rotate(180deg) !important;
}

.fancybox__nav .is-prev {
    right: 40px !important;
    left: auto !important;
    transform: rotate(180deg) !important;
}

/* LTR Fancybox */
[dir="ltr"] .f-thumbs__track {
    flex-flow: row wrap !important;
}

[dir="ltr"] .fancybox__nav .is-next {
    right: 40px !important;
    left: auto;
    transform: none !important;
}

[dir="ltr"] .fancybox__nav .is-prev {
    left: 40px !important;
    right: auto !important;
    transform: none !important;
}
