/* ==========================================================
   Las Casas Landing Pro — Estilos frontend y admin
   Mobile First | Dark Theme | Gold Accent #E2C48E
   ========================================================== */

:root {
    --lclp-bg:        #111418;
    --lclp-card:      #1a1f24;
    --lclp-border:    #2e3540;
    --lclp-gold:      #E2C48E;
    --lclp-gold-dim:  rgba(226,196,142,.18);
    --lclp-text:      #C2C2C2;
    --lclp-text-dim:  #888;
    --lclp-radius:    16px;
    --lclp-radius-sm: 10px;
    --lclp-gap:       16px;
}

*, *::before, *::after { box-sizing: border-box; }

/* --------------------------------------------------------
   SECCIÓN DE BENEFICIOS
   -------------------------------------------------------- */

.lclp-benefits-section {
    padding: 48px 16px 56px;
    background: var(--lclp-bg);
}

.lclp-benefits-header {
    max-width: 640px;
    margin: 0 auto 32px;
    text-align: center;
}

.lclp-benefits-title {
    font-size: clamp(26px, 7vw, 42px);
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.15;
}

.lclp-benefits-title span {
    color: var(--lclp-gold);
}

.lclp-benefits-subtitle {
    color: var(--lclp-text);
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

/* Track — scroll horizontal en móvil, grid en escritorio */
.lclp-benefits-track-wrap {
    position: relative;
    overflow: hidden;
}

.lclp-benefits-track {
    display: flex;
    gap: var(--lclp-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 16px 20px;
    scrollbar-width: none;
}

.lclp-benefits-track::-webkit-scrollbar {
    display: none;
}

/* Tarjeta de beneficio */
.lclp-benefit-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--lclp-card);
    border: 1px solid var(--lclp-border);
    border-radius: var(--lclp-radius);
    padding: 28px 22px 24px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.lclp-benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--lclp-gold);
    box-shadow: 0 12px 28px rgba(0,0,0,.28);
}

.lclp-benefit-icon {
    font-size: 40px;
    margin-bottom: 14px;
    line-height: 1;
}

.lclp-benefit-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--lclp-gold);
    margin: 0 0 10px;
    line-height: 1.3;
}

.lclp-benefit-desc {
    font-size: 14px;
    color: var(--lclp-text);
    line-height: 1.65;
    margin: 0 0 14px;
}

.lclp-benefit-highlight {
    display: inline-block;
    background: var(--lclp-gold-dim);
    border: 1px solid rgba(226,196,142,.4);
    color: var(--lclp-gold);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

/* Puntos de paginación (móvil) */
.lclp-scroll-hint {
    text-align: center;
    margin-top: 8px;
}

.lclp-scroll-dots {
    display: inline-flex;
    gap: 6px;
}

.lclp-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lclp-border);
    transition: background .25s;
}

.lclp-dot.active {
    background: var(--lclp-gold);
}

/* Escritorio: grid de 3 o 6 columnas */
@media (min-width: 900px) {
    .lclp-benefits-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: visible;
        padding: 4px 0 4px;
    }

    .lclp-benefit-card {
        flex: none;
    }

    .lclp-scroll-hint { display: none; }
}

@media (min-width: 1280px) {
    .lclp-benefits-track {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* --------------------------------------------------------
   BLOQUE DE INTELIGENCIA DE MERCADO
   -------------------------------------------------------- */

.lclp-intel-section {
    padding: 48px 16px 56px;
    background: #0e1216;
    border-top: 1px solid var(--lclp-border);
    border-bottom: 1px solid var(--lclp-border);
}

.lclp-intel-header {
    max-width: 640px;
    margin: 0 auto 32px;
    text-align: center;
}

.lclp-intel-label {
    display: inline-block;
    color: var(--lclp-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: var(--lclp-gold-dim);
    border: 1px solid rgba(226,196,142,.35);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.lclp-intel-title {
    font-size: clamp(22px, 6vw, 38px);
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.15;
}

.lclp-intel-subtitle {
    font-size: 15px;
    color: var(--lclp-text-dim);
    margin: 0;
    line-height: 1.6;
}

.lclp-intel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--lclp-gap);
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .lclp-intel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .lclp-intel-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tarjeta de artículo */
.lclp-article-card {
    background: var(--lclp-card);
    border: 1px solid var(--lclp-border);
    border-radius: var(--lclp-radius);
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.lclp-article-card:hover {
    transform: translateY(-4px);
    border-color: var(--lclp-gold);
    box-shadow: 0 12px 28px rgba(0,0,0,.28);
}

.lclp-article-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.lclp-article-img-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1a1f24;
}

.lclp-article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.lclp-article-card:hover .lclp-article-img {
    transform: scale(1.04);
}

.lclp-article-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

.lclp-cat-reg { background: rgba(220,80,60,.85); color:#fff; }
.lclp-cat-mkt { background: rgba(60,160,100,.85); color:#fff; }
.lclp-cat-tec { background: rgba(60,100,220,.85); color:#fff; }

.lclp-article-body {
    padding: 20px 18px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lclp-article-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--lclp-gold);
    margin: 0 0 10px;
    line-height: 1.35;
}

.lclp-article-summary {
    font-size: 13px;
    color: var(--lclp-text);
    line-height: 1.6;
    margin: 0 0 auto;
    padding-bottom: 14px;
}

.lclp-article-cta {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--lclp-gold);
    padding-top: 12px;
    border-top: 1px solid var(--lclp-border);
}

/* --------------------------------------------------------
   BLOQUE INYECTADO EN EL FEED (JS-rendered)
   -------------------------------------------------------- */

.lclp-intel-block {
    grid-column: 1 / -1;       /* Span all grid columns */
    width: 100%;
    margin: 8px 0;
    padding: 32px 0;
    background: #0e1216;
    border-radius: var(--lclp-radius);
    border: 1px solid var(--lclp-border);
}

.lclp-intel-block-inner {
    padding: 0 20px;
}

.lclp-intel-block-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--lclp-gold);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0 0 18px;
    opacity: .75;
}

.lclp-intel-block-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 640px) {
    .lclp-intel-block-grid { grid-template-columns: repeat(3, 1fr); }
}

.lclp-intel-mini-card {
    background: var(--lclp-card);
    border: 1px solid var(--lclp-border);
    border-radius: var(--lclp-radius-sm);
    overflow: hidden;
    transition: border-color .2s;
}

.lclp-intel-mini-card:hover { border-color: var(--lclp-gold); }

.lclp-intel-mini-card a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.lclp-mini-img-wrap {
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: #1a1f24;
}

.lclp-mini-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lclp-mini-body { padding: 14px; }

.lclp-mini-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--lclp-gold);
    margin-bottom: 6px;
}

.lclp-mini-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

/* --------------------------------------------------------
   ADMIN — ESTILOS
   -------------------------------------------------------- */

.lclp-admin-wrap { max-width: 1100px; }

.lclp-admin-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #1a1f24;
    border: 1px solid #2e3540;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.lclp-admin-info { display: flex; flex-direction: column; gap: 6px; color: #C2C2C2; font-size: 14px; }
.lclp-admin-warn { color: #e6a817; }
.lclp-admin-error { color: #e05050; font-size: 13px; }

.lclp-admin-key-form {
    background: #1a1f24;
    border: 1px solid #2e3540;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 24px;
}

.lclp-admin-key-form input { margin-right: 8px; }

.lclp-status {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.lclp-status-published { background: rgba(60,160,100,.2); color: #4CAF50; }
.lclp-status-draft     { background: rgba(200,200,200,.1); color: #aaa; }
.lclp-status-archived  { background: rgba(100,100,100,.2); color: #777; }

.lclp-row-actions { display: flex; gap: 6px; flex-wrap: wrap; }

.lclp-admin-notice {
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
}


.lclp-home-hero, .lclp-home-hero * { box-sizing: border-box; }
.lclp-home-hero img { max-width: 100% !important; height: auto; }
.lclp-home-hero a { text-decoration: none; }

/* ==========================================================
   HOME HERO — banner premium con moneda 3D giratoria
   ========================================================== */

@keyframes lclp-coin-spin {
    0%   { transform: rotateY(0deg) rotateZ(-2deg); }
    50%  { transform: rotateY(180deg) rotateZ(2deg); }
    100% { transform: rotateY(360deg) rotateZ(-2deg); }
}

@keyframes lclp-coin-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

@keyframes lclp-coin-glare {
    0%, 12%  { transform: translateX(-170%) rotate(20deg); opacity: 0; }
    22%      { opacity: .95; }
    40%      { opacity: .35; }
    54%,100% { transform: translateX(190%) rotate(20deg); opacity: 0; }
}

@keyframes lclp-coin-rim {
    0%, 100% { opacity: .35; transform: scale(.96); }
    50%      { opacity: .92; transform: scale(1.08); }
}

@keyframes lclp-hero-border {
    0%, 100% { opacity: .56; filter: blur(0); }
    50%      { opacity: 1; filter: blur(.3px); }
}

@keyframes lclp-hero-light {
    0%   { transform: translate3d(-45%, -25%, 0) rotate(0deg); opacity: .32; }
    50%  { transform: translate3d(18%, 8%, 0) rotate(180deg); opacity: .65; }
    100% { transform: translate3d(-45%, -25%, 0) rotate(360deg); opacity: .32; }
}

@keyframes lclp-spark {
    0%, 100% { transform: translateY(0) scale(.75); opacity: .18; }
    50%      { transform: translateY(-10px) scale(1.05); opacity: .9; }
}

.lclp-home-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    padding: 18px 10px 24px;
    background:
        radial-gradient(circle at 50% 12%, rgba(248,209,137,.24), transparent 28%),
        radial-gradient(circle at 12% 80%, rgba(226,196,142,.10), transparent 32%),
        linear-gradient(135deg, #05080b 0%, #0d1217 44%, #171b20 100%);
}

.lclp-home-hero::before {
    content: '';
    position: absolute;
    inset: -45%;
    z-index: -2;
    background:
        conic-gradient(from 120deg, transparent, rgba(226,196,142,.18), transparent, rgba(255,255,255,.08), transparent);
    animation: lclp-hero-light 12s linear infinite;
}

.lclp-home-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(248,209,137,.42) 0 1px, transparent 2px),
        radial-gradient(circle, rgba(255,255,255,.18) 0 1px, transparent 2px);
    background-size: 86px 86px, 132px 132px;
    background-position: 12px 22px, 44px 58px;
    opacity: .32;
}

.lclp-home-hero-inner {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 20px 14px 22px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
        rgba(8,12,16,.86);
    border: 1px solid rgba(226,196,142,.58);
    box-shadow:
        0 22px 70px rgba(0,0,0,.56),
        0 0 0 1px rgba(255,255,255,.045) inset,
        0 0 42px rgba(226,196,142,.13);
    backdrop-filter: blur(12px);
}

.lclp-home-hero-inner::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 23px;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255,255,255,.16), transparent 18%, transparent 72%, rgba(226,196,142,.12)),
        radial-gradient(circle at 50% 0%, rgba(248,209,137,.18), transparent 36%);
}

.lclp-home-hero-inner::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    pointer-events: none;
    border: 1px solid rgba(248,209,137,.50);
    animation: lclp-hero-border 3.8s ease-in-out infinite;
}

.lclp-home-coin-wrap {
    position: relative;
    width: 92px;
    height: 92px;
    margin: 0 auto 14px;
    perspective: 1100px;
    transform-style: preserve-3d;
    animation: lclp-coin-float 4.2s ease-in-out infinite;
    filter: drop-shadow(0 15px 18px rgba(0,0,0,.34));
}

.lclp-home-coin-wrap::before {
    content: '';
    position: absolute;
    inset: -24px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(248,209,137,.40) 0%, rgba(226,196,142,.20) 32%, rgba(226,196,142,.06) 54%, transparent 72%);
    animation: lclp-coin-rim 3.2s ease-in-out infinite;
    z-index: 0;
}

.lclp-home-coin-wrap::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -16px;
    width: 112px;
    height: 18px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(248,209,137,.50), rgba(226,196,142,.16) 42%, transparent 72%);
    filter: blur(5px);
    z-index: 0;
}

.lclp-home-coin-ray {
    position: absolute;
    inset: -18px;
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
    background:
        linear-gradient(0deg, transparent 45%, rgba(248,209,137,.55) 49%, transparent 53%),
        linear-gradient(45deg, transparent 47%, rgba(255,255,255,.32) 50%, transparent 53%),
        linear-gradient(90deg, transparent 46%, rgba(248,209,137,.45) 50%, transparent 54%),
        linear-gradient(135deg, transparent 47%, rgba(255,255,255,.24) 50%, transparent 53%);
    opacity: .55;
    animation: lclp-coin-rim 5.4s ease-in-out infinite;
}

.lclp-home-coin {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: lclp-coin-spin 2.9s linear infinite;
}

.lclp-home-coin::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #6f4d1f, #f8d189, #fff3c5, #b57a2d, #f8d189, #6f4d1f);
    transform: translateZ(-2px);
    z-index: -1;
}

.lclp-home-coin::after {
    content: '';
    position: absolute;
    top: 8%;
    bottom: 8%;
    left: 0;
    width: 42%;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.96), rgba(248,209,137,.62), transparent);
    transform: translateX(-170%) rotate(20deg);
    animation: lclp-coin-glare 2.9s ease-in-out infinite;
    pointer-events: none;
    z-index: 8;
    mix-blend-mode: screen;
}

.lclp-home-coin-face {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
    backface-visibility: hidden;
    background:
        radial-gradient(circle at 35% 24%, rgba(255,255,255,.34), transparent 24%),
        radial-gradient(circle at 50% 55%, rgba(248,209,137,.22), transparent 56%),
        #c99a4a;
    box-shadow:
        inset 0 0 0 2px rgba(255,255,255,.16),
        inset 0 0 20px rgba(80,45,10,.28),
        0 0 24px rgba(226,196,142,.38);
}

.lclp-home-coin-face img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.lclp-home-coin-back {
    transform: rotateY(180deg);
}

.lclp-home-copy {
    position: relative;
    z-index: 2;
    text-align: center;
}

.lclp-home-eyebrow {
    display: inline-flex;
    width: fit-content;
    color: var(--lclp-gold);
    background: rgba(226,196,142,.13);
    border: 1px solid rgba(226,196,142,.38);
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .10em;
    text-transform: uppercase;
    margin-bottom: 13px;
    box-shadow: 0 0 18px rgba(226,196,142,.10);
}

.lclp-home-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(26px, 7vw, 50px);
    line-height: .98;
    font-weight: 400;
    margin: 0 0 11px;
    color: #f8d189;
    text-shadow:
        0 2px 0 rgba(107,70,25,.55),
        0 6px 22px rgba(226,196,142,.32);
}

.lclp-home-lead {
    max-width: 720px;
    font-size: 14px;
    line-height: 1.58;
    color: var(--lclp-text);
    margin: 0 auto 17px;
}

.lclp-home-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 780px;
    margin: 0 auto 19px;
}

.lclp-home-point {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 66px 1fr;
    align-items: center;
    gap: 11px;
    background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
    border: 1px solid rgba(226,196,142,.28);
    border-radius: 16px;
    padding: 10px 12px;
    text-align: left;
    box-shadow: inset 0 0 18px rgba(255,255,255,.025);
}

.lclp-home-point::after {
    content: '';
    position: absolute;
    top: -40%;
    left: -30%;
    width: 35%;
    height: 180%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
    transform: rotate(18deg);
    opacity: 0;
    transition: left .55s ease, opacity .25s ease;
}

.lclp-home-point:hover::after {
    left: 110%;
    opacity: 1;
}

.lclp-home-point strong {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    color: #f8d189;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 31px;
    line-height: 1;
    border: 1px solid rgba(226,196,142,.50);
    border-radius: 14px;
    background:
        radial-gradient(circle at 35% 20%, rgba(255,255,255,.18), transparent 30%),
        rgba(226,196,142,.09);
    box-shadow: inset 0 0 18px rgba(226,196,142,.12), 0 8px 22px rgba(0,0,0,.18);
}

.lclp-home-point span {
    display: block;
    color: var(--lclp-text);
    font-size: 13px;
    line-height: 1.36;
}

.lclp-home-actions {
    display: flex;
    justify-content: center;
}

.lclp-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    width: 100%;
    max-width: 252px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.lclp-home-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
    filter: brightness(1.05);
}

.lclp-home-btn-primary,
.lclp-home-btn {
    background: linear-gradient(135deg, #E2C48E 0%, #F8D189 45%, #C99A4A 100%);
    color: #0B1014;
    box-shadow:
        0 12px 28px rgba(226,196,142,.28),
        inset 0 1px 0 rgba(255,255,255,.38);
}

@media (prefers-reduced-motion: reduce) {
    .lclp-home-hero::before,
    .lclp-home-hero-inner::after,
    .lclp-home-coin-wrap,
    .lclp-home-coin-wrap::before,
    .lclp-home-coin-ray,
    .lclp-home-coin,
    .lclp-home-coin::after {
        animation: none;
    }
}

@media (min-width: 700px) {
    .lclp-home-hero {
        padding: 20px 16px 26px;
    }

    .lclp-home-hero-inner {
        border-radius: 28px;
        padding: 22px 26px 24px;
    }

    .lclp-home-hero-inner::before,
    .lclp-home-hero-inner::after {
        border-radius: 27px;
    }

    .lclp-home-coin-wrap {
        width: 112px;
        height: 112px;
        margin-bottom: 18px;
    }

    .lclp-home-lead {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .lclp-home-points {
        grid-template-columns: repeat(3, 1fr);
        gap: 13px;
    }

    .lclp-home-point {
        display: block;
        text-align: center;
        padding: 15px 13px;
    }

    .lclp-home-point strong {
        min-height: 60px;
        margin-bottom: 9px;
        font-size: 33px;
    }
}

@media (min-width: 1024px) {
    .lclp-home-hero {
        padding: 26px 18px 32px;
    }

    .lclp-home-hero-inner {
        padding: 24px 40px 26px;
    }

    .lclp-home-coin-wrap {
        width: 110px;
        height: 110px;
        margin-bottom: 14px;
    }

    .lclp-home-title {
        margin-bottom: 10px;
    }

    .lclp-home-points {
        max-width: 900px;
    }
}

/* --------------------------------------------------------
   PLACEHOLDER SIN IMAGEN (tarjetas de artículos)
   -------------------------------------------------------- */

.lclp-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    user-select: none;
}

.lclp-no-img-regulation {
    background: linear-gradient(135deg, #1a0f10 0%, #2d1518 60%, #3a1a1e 100%);
}

.lclp-no-img-regulation::after {
    content: '⚖️';
}

.lclp-no-img-market {
    background: linear-gradient(135deg, #0d1a10 0%, #152d18 60%, #1a3a1e 100%);
}

.lclp-no-img-market::after {
    content: '📈';
}

.lclp-no-img-technology {
    background: linear-gradient(135deg, #0f1020 0%, #151828 60%, #1a2040 100%);
}

.lclp-no-img-technology::after {
    content: '🤖';
}

/* --------------------------------------------------------
   ARTICLE PAGE — страница отдельной статьи
   -------------------------------------------------------- */

.lclp-article-page {
    max-width: 860px;
    margin: 40px auto 80px;
    padding: 0 20px;
    color: #F5F5F5;
}

.lclp-article-page h1 {
    font-size: clamp(24px, 5vw, 40px);
    line-height: 1.2;
    margin-bottom: 12px;
    color: #F5F5F5;
}

.lclp-page-cat {
    display: inline-block;
    background: rgba(226, 196, 142, .13);
    color: #E2C48E;
    border: 1px solid rgba(226, 196, 142, .35);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 20px;
}

.lclp-page-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 32px;
    object-fit: cover;
    max-height: 420px;
    display: block;
}

.lclp-page-body {
    line-height: 1.8;
    font-size: 17px;
    color: #F5F5F5;
}

.lclp-page-body p,
.lclp-page-body li,
.lclp-page-body div {
    color: #F5F5F5;
    margin-bottom: 18px;
}

.lclp-page-body h1,
.lclp-page-body h2,
.lclp-page-body h3 {
    color: #E2C48E;
}

.lclp-page-body h2 {
    margin: 32px 0 12px;
}

.lclp-page-back {
    display: inline-block;
    margin-bottom: 32px;
    text-decoration: none;
    font-size: 14px;
    color: #C2C2C2;
}

.lclp-page-back:hover {
    text-decoration: underline;
    color: #E2C48E;
}

.lclp-page-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.lclp-page-date {
    font-size: 13px;
    color: #888;
}

.lclp-author-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 52px;
    padding: 24px 28px;
    background: rgba(226, 196, 142, .07);
    border: 1px solid rgba(226, 196, 142, .2);
    border-radius: 14px;
}

.lclp-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #E2C48E, #b8954a);
}

.lclp-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.lclp-author-info {
    flex: 1;
}

.lclp-author-role {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #E2C48E;
    margin-bottom: 3px;
}

.lclp-author-name {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.lclp-author-bio {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

.lclp-author-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    font-size: 11px;
    color: #888;
    background: rgba(255, 255, 255, .05);
    border-radius: 6px;
    padding: 3px 9px;
}
