/*
Theme Name: La Direkta Theme
Theme URI: https://ladirekta.com
Author: La Direkta.co
Description: Tema brutalista para medios independientes. Versión Auditada.
Version: 1.2
*/

/* --- ESTILOS BASE --- */

body {
    background-color: #f4f4f0;
    color: #1a1a1a;
    /* Patrón de ruido SVG embebido */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

/* Tipografía */
body {
    font-family: 'Space Grotesk', sans-serif;
}

h1,
h2,
h3,
h4,
.font-oswald {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* --- ANIMACIÓN MARQUEE --- */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    /* Empieza fuera de la pantalla */
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* --- ESTILOS BRUTALISTAS --- */
.brutal-border {
    border: 3px solid #000;
    box-shadow: 5px 5px 0px #000;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brutal-border:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #DC2626;
}

/* Texto contorneado (Outline) */
.text-outline {
    -webkit-text-stroke: 2px #000;
    color: transparent;
}

/* Ajustes de WP */
.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

img {
    max-width: 100%;
    height: auto;
}