/* =============================================
   Noticias / Blog — Polarizarte
   ============================================= */

/* ── Article hero ── */
.article-hero {
    padding: 140px 0 80px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.article-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(208,116,40,0.09);
    border: 1px solid rgba(208,116,40,0.25);
    color: #d07428;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.article-hero h1 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    opacity: 0.5;
    margin-top: 24px;
}

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

/* ── Article body layout ── */
.article-layout {
    padding: 70px 0 80px;
}

.article-content {
    max-width: 780px;
}

.article-content p {
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 22px;
    color: inherit;
    opacity: 0.85;
}

.article-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 44px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(208,116,40,0.2);
    color: inherit;
}

.article-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0 12px;
    color: inherit;
}

.article-content ul, .article-content ol {
    padding-left: 22px;
    margin-bottom: 22px;
}

.article-content li {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 8px;
    opacity: 0.85;
}

.article-content strong { color: inherit; opacity: 1; font-weight: 700; }

/* ── Price / comparison table ── */
.precio-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 14px;
    border-radius: 12px;
    overflow: hidden;
}

.precio-table th {
    background: #d07428;
    color: #fff;
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.precio-table td {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    vertical-align: middle;
}

.precio-table tr:last-child td { border-bottom: none; }

.precio-table tr:nth-child(even) td {
    background: rgba(208,116,40,0.04);
}

/* ── Info / highlight box ── */
.info-box {
    background: rgba(208,116,40,0.06);
    border-left: 4px solid #d07428;
    border-radius: 0 10px 10px 0;
    padding: 20px 24px;
    margin: 30px 0;
}

.info-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

/* ── CTA box ── */
.article-cta {
    background: linear-gradient(135deg, rgba(208,116,40,0.08), rgba(208,116,40,0.03));
    border: 1px solid rgba(208,116,40,0.25);
    border-radius: 16px;
    padding: 34px 36px;
    margin: 50px 0;
    text-align: center;
}

.article-cta h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    border: none !important;
}

.article-cta p {
    font-size: 15px;
    margin-bottom: 24px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: #d07428;
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.cta-btn:hover {
    background: #b5611f;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* ── Sidebar ── */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-card h5 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #d07428;
    margin-bottom: 16px;
}

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

.sidebar-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 13px;
    line-height: 1.5;
}

.sidebar-card li:last-child { border-bottom: none; }

.sidebar-card a {
    color: inherit;
    opacity: 0.75;
    transition: opacity 0.2s, color 0.2s;
    text-decoration: none;
}

.sidebar-card a:hover { opacity: 1; color: #d07428; }

/* ── Noticias index grid ── */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 60px 0;
}

@media (max-width: 992px) { .noticias-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .noticias-grid { grid-template-columns: 1fr; } }

.noticia-card {
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
}

.noticia-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.noticia-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.noticia-card-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #d07428;
    margin-bottom: 10px;
}

.noticia-card h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.noticia-card p {
    font-size: 13px;
    opacity: 0.6;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 18px;
}

.noticia-card a.read-more {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d07428;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.noticia-card a.read-more:hover { gap: 10px; }
