:root {
    --primary-color: #ed2024;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #777777;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --footer-bg: #111119;
    --footer-bottom: #0a0a0f;
    --border-color: #eaeaea;
    --font-main: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 12px;
    padding: 5px 0;
    font-weight: 500;
}

/* Header */
.main-header {
    background-color: var(--bg-white);
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
}

.logo img {
    height: 50px;
}

/* Navigation */
.main-nav {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
}

.home-btn {
    background-color: var(--primary-color);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-btn img {
    height: 18px;
    filter: brightness(0) invert(1);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-left: 20px;
}

.nav-links li a {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-right {
    gap: 15px;
}

.nav-right img {
    height: 18px;
    cursor: pointer;
    opacity: 0.7;
}

.nav-right img:hover {
    opacity: 1;
}

/* Ticker */
.ticker-section {
    background-color: var(--bg-white);
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.ticker-container {
    display: flex;
    align-items: center;
    height: 40px;
}

.ticker-label {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: 700;
    font-size: 14px;
    padding: 0 25px 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
    z-index: 2;
}

.ticker-label::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    border-left: 15px solid var(--primary-color);
    border-top: 40px solid transparent;
}

.ticker-content {
    flex-grow: 1;
    overflow: hidden;
    padding-left: 30px;
    font-size: 13px;
    font-weight: 500;
}

.ticker-content marquee {
    display: flex;
    align-items: center;
}

.ticker-content img {
    height: 10px;
    display: inline-block;
    margin: 0 5px;
}

/* Badges */
.badge {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 2px;
    margin-bottom: 5px;
}

/* Featured Small Grid */
.featured-small-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.small-card {
    background: var(--bg-white);
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.small-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.small-card h3 {
    font-size: 13px;
    line-height: 1.3;
    margin-top: 5px;
}

/* Featured Main Grid */
.featured-main-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.main-articles {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 20px;
}

.hero-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
    transition: transform 0.3s;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    /*background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);*/
    color: var(--text-light);
}

.hero-overlay h2 {
    font-size: 20px;
    margin: 5px 0 10px;
    line-height: 1.2;
}

.meta {
    display: flex;
    gap: 15px;
    font-size: 11px;
    color: #ccc;
    text-transform: uppercase;
}

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

.meta img {
    height: 12px;
    width: auto;
    filter: brightness(0) invert(1);
}

.camera-icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    padding: 6px;
    border-radius: 3px;
    display: flex;
}

.camera-icon img {
    height: 14px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hero-card .camera-icon {
    top: 20px;
    bottom: auto;
}

/* Sidebar Tabs */
.sidebar {
    background: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.tabs {
    display: flex;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: #333;
    color: white;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-main);
}

.tab-btn.active {
    background: var(--primary-color);
}

.tab-content {
    display: none;
    padding: 15px;
}

.tab-content.active {
    display: block;
}

.sidebar-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-list img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.sidebar-list h4 {
    font-size: 13px;
    line-height: 1.3;
}

/* Article List */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.list-item {
    display: flex;
    background: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.img-wrapper {
    position: relative;
    width: 35%;
    min-width: 300px;
}

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

.list-content {
    padding: 30px;
    width: 65%;
}

.list-content h2 {
    font-size: 22px;
    margin: 10px 0;
}

.list-content .meta {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.list-content .meta img {
    filter: grayscale(1) opacity(0.6);
}

.list-content p {
    color: #555;
    font-size: 15px;
}

/* You Missed Section */
.missed-section {
    background: var(--bg-white);
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.section-header {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 20px;
    position: relative;
}

.header-badge {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 8px 20px;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
}

.header-badge::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    border-left: 15px solid var(--primary-color);
    border-top: 37px solid transparent;
}

.missed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.missed-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 150px;
}

.missed-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.missed-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--text-light);
}

.missed-overlay h4 {
    font-size: 13px;
    margin-top: 5px;
}

/* Welcome Text */
.welcome-text {
    background: var(--bg-white);
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.welcome-text h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.welcome-text p {
    color: #444;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.main-footer {
    background-color: var(--footer-bg);
    color: #aaa;
}

.footer-top {
    padding: 50px 15px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 20px;
}

.footer-logo img {
    height: 30px;
}

.footer-header {
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--primary-color);
    font-size: 13px;
    text-decoration: underline;
}

.footer-links a:hover {
    color: var(--text-light);
}

.footer-bottom {
    background-color: var(--footer-bottom);
    padding: 15px 0;
    font-size: 11px;
    text-align: left;
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.scroll-top img {
    width: 20px;
    filter: brightness(0) invert(1);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 320px;
    background: var(--bg-white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    z-index: 1000;
    display: none;
    animation: slideInRight 0.5s ease forwards;
}

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

.cookie-content {
    padding: 20px;
}

.cookie-content h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.cookie-content p {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.btn-accept {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
}

.btn-accept:hover {
    background: #c9191c;
}

/* Responsive */
@media (max-width: 992px) {
    .featured-main-grid {
        grid-template-columns: 1fr;
    }
    .main-articles {
        grid-template-columns: 1fr;
    }
    .img-wrapper {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .featured-small-grid, .missed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .list-item {
        flex-direction: column;
    }
    .img-wrapper {
        width: 100%;
        height: 200px;
    }
    .list-content {
        width: 100%;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
    .ticker-label {
        padding: 0 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .featured-small-grid, .missed-grid {
        grid-template-columns: 1fr;
    }
    .cookie-modal {
        right: 10px;
        left: 10px;
        width: auto;
        bottom: 70px;
    }
}

/* Inner page styles */
/* ----------------------------------------
   NOVOS ESTILOS PARA A PÁGINA INTERNA
---------------------------------------- */

/* Layout base da página interna */
.internal-page {
    padding-top: 20px;
}

.breadcrumb {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.article-main {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Título e Meta do Artigo */
.article-title {
    font-size: 36px;
    color: var(--text-dark);
    margin: 15px 0;
    line-height: 1.25;
    font-weight: 900;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    color: #888;
    margin-bottom: 30px;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

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

.article-meta img {
    height: 14px;
    opacity: 0.5;
}

/* Imagens Responsivas */
.responsive-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.article-hero-img {
    margin-bottom: 35px;
}

/* Índice (Table of Contents) */
.toc {
    background: #fdfdfd;
    border-left: 5px solid var(--primary-color);
    padding: 25px;
    margin-bottom: 35px;
    border-radius: 0 6px 6px 0;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.02);
}

.toc-title {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-transform: uppercase;
}

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

.toc li {
    margin-bottom: 10px;
}

.toc a {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding-left: 15px;
}

.toc a::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 1;
}

.toc a:hover {
    color: var(--primary-color);
}

/* Estilos de Conteúdo (Tipografia H1-H6, P, SPAN) */
.article-content h1, 
.article-content h2, 
.article-content h3, 
.article-content h4, 
.article-content h5, 
.article-content h6 {
    color: var(--text-dark);
    font-weight: 700;
    margin: 35px 0 15px;
    line-height: 1.3;
}

.article-content h1 { font-size: 28px; }
.article-content h2 { font-size: 26px; border-bottom: 1px solid var(--border-color); padding-bottom: 10px; }
.article-content h3 { font-size: 22px; color: var(--primary-color); }
.article-content h4 { font-size: 20px; }
.article-content h5 { font-size: 18px; }
.article-content h6 { font-size: 16px; text-transform: uppercase; letter-spacing: 0.5px; }

.article-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 22px;
}

.article-content span.highlight {
    background-color: rgba(237, 32, 36, 0.1);
    color: var(--primary-color);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

/* Listas UL e OL */
.article-content ul, 
.article-content ol {
    margin: 0 0 25px 20px;
    padding-left: 20px;
    color: #444;
    font-size: 17px;
}

.article-content ul li, 
.article-content ol li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.article-content ul {
    list-style-type: square;
}

.article-content ul li::marker {
    color: var(--primary-color);
}

.article-content ol {
    list-style-type: decimal;
}

.article-content ol li::marker {
    color: var(--primary-color);
    font-weight: bold;
}

.article-content img {
    margin: 30px 0;
}

/* Estilos para Table */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 15px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    border-radius: 4px;
    overflow: hidden;
}

.article-content table th, 
.article-content table td {
    border: 1px solid var(--border-color);
    padding: 15px;
    text-align: left;
    line-height: 1.5;
}

.article-content table th {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    border-color: var(--primary-color);
}

.article-content table tr:nth-child(even) {
    background-color: #fafafa;
}

.article-content table tr:hover {
    background-color: #f1f1f1;
}

/* Formulários (Comum para Contato e Comentários) */
.form-group {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(237, 32, 36, 0.1);
}

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

.btn-submit {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 14px 30px;
    font-weight: 900;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 15px;
    transition: background 0.3s ease;
    font-family: var(--font-main);
}

.btn-submit:hover {
    background: #cc191c;
}

/* Formulário de Contato */
.contact-form-section {
    background: #fdfdfd;
    padding: 35px;
    border-radius: 6px;
    margin-top: 50px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.contact-form-section h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
}

/* Seção de Comentários */
.comments-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.comments-section h3 {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.comment-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #f1f1f1;
}

.comment-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.comment-body h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.comment-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}

.comment-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.comment-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

/* Bloco de Linkagem Interna (Artigos Relacionados) */
.related-articles {
    margin-top: 50px;
    padding: 30px 0;
    border-top: 2px solid var(--border-color);
}

.related-articles h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.related-card {
    display: flex;
    gap: 15px;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

.related-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
}

.related-card h4 {
    font-size: 15px;
    line-height: 1.4;
    margin-top: 8px;
    color: var(--text-dark);
}

/* Responsividade */
@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    .sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .article-main {
        padding: 20px;
    }
    .article-title {
        font-size: 28px;
    }
    .comment-item {
        flex-direction: column;
        gap: 15px;
    }
}
.meta img,
.article-meta img,
.nav-right img,
.home-btn img,
.ticker-content img,
.camera-icon img,
.sidebar-list .badge + h4 img {
    width: auto;
    max-width: none;
    height: auto;
}

.meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
}

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

.meta span img {
    width: 13px !important;
    height: 13px !important;
    max-width: 13px !important;
    max-height: 13px !important;
    object-fit: contain;
    flex: 0 0 13px;
}

.camera-icon {
    position: absolute;
    left: 18px;
    bottom: 95px;
    z-index: 5;
    width: 28px;
    height: 28px;
    background: #ef1d24;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.camera-icon img,
.hero-card .camera-icon img,
.list-item .camera-icon img {
    width: 15px !important;
    height: 15px !important;
    max-width: 15px !important;
    max-height: 15px !important;
    object-fit: contain;
    display: block;
}

.img-wrapper {
    position: relative;
}

.img-wrapper .camera-icon {
    left: 12px;
    bottom: 12px;
}

.hero-card {
    position: relative;
    overflow: hidden;
}

.hero-card > a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.25) 45%,
            rgba(0, 0, 0, 0.72) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 3;
    color: #fff;
}

.hero-overlay h2,
.hero-overlay h2 a {
    color: #fff;
    text-decoration: none;
}

.hero-overlay .meta,
.hero-overlay .meta span {
    color: #fff;
}

.home-btn img {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    object-fit: contain;
}

.nav-right img {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    object-fit: contain;
}

.ticker-content img {
    width: 13px !important;
    height: 13px !important;
    max-width: 13px !important;
    max-height: 13px !important;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px 0 14px;
}

.sidebar-list li {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar-list li > a,
.sidebar-list li > img {
    flex: 0 0 56px;
}

.sidebar-list li > a img,
.sidebar-list li > img {
    width: 56px !important;
    height: 56px !important;
    max-width: 56px !important;
    max-height: 56px !important;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.small-card > a img {
    width: 58px !important;
    height: 58px !important;
    max-width: 58px !important;
    max-height: 58px !important;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.list-item .img-wrapper > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.missed-card {
    position: relative;
    overflow: hidden;
}

.missed-card > a {
    display: block;
    width: 100%;
    height: 100%;
}

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

@media (max-width: 768px) {
    .camera-icon {
        width: 24px;
        height: 24px;
        left: 12px;
        bottom: 80px;
    }

    .camera-icon img,
    .hero-card .camera-icon img,
    .list-item .camera-icon img {
        width: 13px !important;
        height: 13px !important;
        max-width: 13px !important;
        max-height: 13px !important;
    }

    .hero-overlay {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .meta {
        gap: 7px 10px;
    }
}

.hero-card .camera-icon img,
.list-item .camera-icon img {
    width: 15px !important;
    height: 15px !important;
    max-width: 15px !important;
    max-height: 15px !important;
}