/* ── Estilos compartidos para posts del blog ── */

* { margin: 0; padding: 0; box-sizing: border-box; }
::selection { background-color: #ff4500; color: #fff; }

body {
    background-color: #060606;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
}

.art-header {
    padding: 48px 40px 0;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.art-logo {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #fff;
    text-decoration: none;
}

.art-back {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}
.art-back:hover { color: #fff; }

.art-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 72px 40px 120px;
}

.art-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.art-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff4500;
}

.art-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.art-date, .art-read { font-size: 0.72rem; opacity: 0.35; }

.art-container h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.art-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.75;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.art-container h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    margin-top: 48px;
}

.art-container h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
    margin-top: 28px;
}

.art-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.7;
    margin-bottom: 24px;
}

.art-container p a {
    color: #ff4500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,69,0,0.4);
    transition: border-color 0.2s;
}
.art-container p a:hover { border-bottom-color: #ff4500; }

.art-highlight {
    border-left: 2px solid #ff4500;
    padding: 20px 28px;
    margin: 40px 0;
    background: rgba(255,69,0,0.05);
}
.art-highlight p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    font-style: italic;
}

.art-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0 32px;
}
.art-list li {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.7;
    padding-left: 20px;
    position: relative;
}
.art-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #ff4500;
    opacity: 1;
}

.art-card {
    background: #0e0e0e;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 36px;
    margin: 40px 0;
}
.art-card-tag {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff4500;
    margin-bottom: 12px;
}
.art-card h3 {
    margin-top: 0;
    margin-bottom: 14px;
}
.art-card p { font-size: 1rem; margin-bottom: 0; }

.art-cta {
    margin-top: 72px;
    padding: 48px 40px;
    background: #0e0e0e;
    border: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
.art-cta p { font-size: 1rem; opacity: 0.5; margin-bottom: 8px; }
.art-cta h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 28px;
    margin-top: 0;
}
.art-cta a {
    display: inline-block;
    background: rgba(255, 69, 0, 0.10);
    border: 1.5px solid rgba(255, 69, 0, 0.45);
    color: #ff4500;
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.art-cta a:hover {
    background: rgba(255, 69, 0, 0.2);
    border-color: rgba(255, 69, 0, 0.8);
    transform: scale(1.04);
}

.art-footer {
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    opacity: 0.3;
}
.art-footer a { color: inherit; text-decoration: none; }

@media (max-width: 600px) {
    .art-header { padding: 32px 24px 0; }
    .art-container { padding: 56px 24px 80px; }
    .art-card { padding: 28px 24px; }
    .art-cta { padding: 36px 24px; }
}
