/* =============================================================
   ESPORTE TECH — layout.css
   Todos os componentes de layout do tema
   ============================================================= */

/* ═══════════ HEADER / NAV ═══════════ */
.et-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10,10,10,0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--et-border);
    transition: border-color 0.3s;
}

.et-nav__inner {
    display: flex;
    align-items: center;
    height: 64px;
    gap: 0;
}

.et-nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-right: auto;
}

.et-nav__logo-mark {
    width: 36px;
    height: 36px;
    background: var(--et-lime);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.et-nav__logo-text {
    font-family: var(--et-font-display);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--et-white);
    line-height: 1;
}

.et-nav__logo-text span { color: var(--et-lime); }

.et-nav__links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin-right: 20px;
}

.et-nav__links li > a {
    font-family: var(--et-font-semi);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--et-gray2);
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.15s;
    display: block;
    white-space: nowrap;
}

.et-nav__links li > a:hover,
.et-nav__links li.current-menu-item > a,
.et-nav__links li.current-menu-parent > a { color: var(--et-lime); background: var(--et-lime-dim); }

.et-nav__search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--et-dark2);
    border: 1px solid var(--et-border2);
    border-radius: 6px;
    padding: 7px 12px;
    transition: border-color 0.15s;
}

.et-nav__search:focus-within { border-color: var(--et-lime); }

.et-nav__search input {
    background: none;
    border: none;
    outline: none;
    font-family: var(--et-font-body);
    font-size: 13px;
    color: var(--et-white);
    width: 140px;
}

.et-nav__search input::placeholder { color: var(--et-gray); }

.et-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    margin-left: 12px;
}

.et-nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--et-white);
    border-radius: 2px;
    transition: all 0.2s;
}

/* Mobile menu */
.et-mobile-menu {
    background: var(--et-dark);
    border-top: 1px solid var(--et-border2);
    padding: 16px 0;
}

.et-mobile-menu__list { list-style: none; }
.et-mobile-menu__list li a {
    display: block;
    padding: 12px 0;
    font-family: var(--et-font-semi);
    font-size: 16px;
    font-weight: 500;
    color: var(--et-gray2);
    border-bottom: 1px solid var(--et-border2);
    transition: color 0.15s;
}
.et-mobile-menu__list li a:hover { color: var(--et-lime); }

/* ═══════════ TICKER ═══════════ */
.et-ticker {
    background: var(--et-lime);
    color: var(--et-black);
    padding: 7px 0;
    overflow: hidden;
}

.et-ticker__inner {
    display: flex;
    animation: et-ticker 32s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.et-ticker__item {
    font-family: var(--et-font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding-right: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.et-ticker__item::before { content: '▶'; font-size: 8px; opacity: 0.6; }

@keyframes et-ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════ HERO (homepage) ═══════════ */
.et-hero {
    min-height: 90vh;
    background-color: var(--et-black);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.et-hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(10,10,10,0.95) 55%, rgba(10,10,10,0.6) 100%),
        radial-gradient(ellipse 60% 80% at 30% 50%, rgba(200,242,60,0.07) 0%, transparent 70%);
}

.et-hero__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200,242,60,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,242,60,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 30% 40%, black 0%, transparent 70%);
}

.et-hero__layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    min-height: 90vh;
    position: relative;
    z-index: 2;
}

.et-hero__main {
    padding: 60px 40px 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.et-hero__category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--et-lime-dim);
    border: 1px solid rgba(200,242,60,0.3);
    border-radius: 3px;
    padding: 5px 12px;
    font-family: var(--et-font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--et-lime);
    margin-bottom: 24px;
    width: fit-content;
}

.et-hero__category span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--et-lime);
    animation: et-blink 1.5s ease infinite;
}

@keyframes et-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

.et-hero__title {
    font-family: var(--et-font-display);
    font-size: clamp(44px, 5.5vw, 80px);
    font-weight: 900;
    line-height: 0.93;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--et-white);
    margin-bottom: 24px;
}

.et-hero__excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: var(--et-gray2);
    max-width: 520px;
    margin-bottom: 28px;
}

.et-hero__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.et-author-chip { display: flex; align-items: center; gap: 8px; }

.et-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--et-lime);
    color: var(--et-black);
    font-family: var(--et-font-display);
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.et-author-name { font-family: var(--et-font-semi); font-size: 13px; font-weight: 500; color: var(--et-gray2); }
.et-hero__date  { font-size: 13px; color: var(--et-gray); }
.et-read-time   { font-size: 12px; color: var(--et-gray); background: var(--et-dark3); padding: 3px 10px; border-radius: 12px; }

.et-hero__cta { display: flex; gap: 14px; align-items: center; }

/* Hero sidebar */
.et-hero__sidebar {
    border-left: 1px solid var(--et-border2);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    background: rgba(17,19,24,0.7);
    overflow-y: auto;
}

.et-hero__sidebar-head {
    font-family: var(--et-font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--et-lime);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--et-border);
}

.et-trending-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--et-border2);
    text-decoration: none;
    color: inherit;
    transition: all 0.15s;
}

.et-trending-item:last-child { border-bottom: none; }
.et-trending-item:hover .et-trending-title { color: var(--et-lime); }

.et-trending-num {
    font-family: var(--et-font-display);
    font-size: 26px;
    font-weight: 900;
    color: rgba(200,242,60,0.15);
    line-height: 1;
    min-width: 30px;
    transition: color 0.15s;
}

.et-trending-item:hover .et-trending-num { color: rgba(200,242,60,0.4); }

.et-trending-content { flex: 1; }
.et-trending-cat { font-family: var(--et-font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 3px; }
.et-trending-title { font-family: var(--et-font-semi); font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--et-white); transition: color 0.15s; }
.et-trending-time { font-size: 11px; color: var(--et-gray); margin-top: 3px; }

/* ═══════════ CATEGORY STRIP ═══════════ */
.et-cats-strip {
    border-top: 1px solid var(--et-border2);
    border-bottom: 1px solid var(--et-border2);
    background: var(--et-black);
}

.et-cats-inner {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}

.et-cats-inner::-webkit-scrollbar { display: none; }

.et-cat-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 22px;
    font-family: var(--et-font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--et-gray2);
    border-right: 1px solid var(--et-border2);
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.15s;
}

.et-cat-pill:hover, .et-cat-pill.active {
    color: var(--et-lime);
    background: var(--et-lime-dim);
}

.et-cat-pill__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ═══════════ FEATURED GRID ═══════════ */
.et-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 280px;
    grid-template-rows: auto auto;
    gap: 1px;
    background: var(--et-border2);
    border: 1px solid var(--et-border2);
    border-radius: 8px;
    overflow: hidden;
}

.et-card--lg { grid-column: 1; grid-row: 1 / 3; }
.et-card--lg .et-card__title { font-size: 24px; }
.et-card--lg .et-card__body { padding: 24px; }

.et-featured-sidebar {
    grid-column: 3;
    grid-row: 1 / 3;
    background: var(--et-dark2);
    display: flex;
    flex-direction: column;
}

.et-featured-sidebar__head {
    font-family: var(--et-font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--et-lime);
    padding: 16px 20px;
    border-bottom: 1px solid var(--et-border2);
}

.et-sidebar-post {
    flex: 1;
    padding: 16px 20px;
    border-bottom: 1px solid var(--et-border2);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: background 0.15s;
}

.et-sidebar-post:last-child { border-bottom: none; }
.et-sidebar-post:hover { background: var(--et-dark3); }

.et-sidebar-post__img {
    width: 100%;
    aspect-ratio: 16/8;
    background-color: var(--et-dark3);
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    margin-bottom: 10px;
}

.et-sidebar-post__title {
    font-family: var(--et-font-semi);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--et-white);
    margin-bottom: 6px;
    transition: color 0.15s;
}

.et-sidebar-post:hover .et-sidebar-post__title { color: var(--et-lime); }

.et-sidebar-post__meta {
    display: flex;
    gap: 6px;
    font-size: 11px;
    color: var(--et-gray);
}

/* ═══════════ LATEST POSTS ═══════════ */
.et-latest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--et-border2);
    border: 1px solid var(--et-border2);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1px;
}

.et-latest-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--et-border2);
    border: 1px solid var(--et-border2);
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    overflow: hidden;
}

.et-list-item {
    background: var(--et-dark);
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}

.et-list-item:hover { background: var(--et-dark2); }
.et-list-item:hover .et-list-item__title { color: var(--et-lime); }

.et-list-item__num {
    font-family: var(--et-font-display);
    font-size: 11px;
    font-weight: 800;
    color: var(--et-gray);
    padding: 16px 18px;
    border-right: 1px solid var(--et-border2);
    min-width: 50px;
    text-align: center;
}

.et-list-item__content {
    flex: 1;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.et-list-item__cat {
    font-family: var(--et-font-display);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: 72px;
    flex-shrink: 0;
}

.et-list-item__title {
    font-family: var(--et-font-semi);
    font-size: 14px;
    font-weight: 600;
    color: var(--et-white);
    flex: 1;
    transition: color 0.15s;
    line-height: 1.35;
}

.et-list-item__meta {
    font-size: 11px;
    color: var(--et-gray);
    white-space: nowrap;
    padding-right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.et-no-results {
    grid-column: 1 / -1;
    padding: 60px;
    text-align: center;
    color: var(--et-gray);
    font-size: 15px;
}

/* ═══════════ SINGLE POST ═══════════ */
.et-post-hero {
    min-height: 55vh;
    background-color: var(--et-dark);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.et-post-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.98) 30%, rgba(10,10,10,0.5) 100%);
}

.et-post-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 48px;
    padding-bottom: 48px;
    max-width: 820px;
}

.et-post-hero__cat {
    display: inline-block;
    font-family: var(--et-font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border: 1px solid;
    border-radius: 3px;
    margin-bottom: 16px;
    background: rgba(0,0,0,0.3);
    text-decoration: none;
    transition: background 0.15s;
}

.et-post-hero__cat:hover { background: rgba(0,0,0,0.5); }

.et-post-hero__title {
    font-family: var(--et-font-display);
    font-size: clamp(32px, 4.5vw, 60px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.0;
    color: var(--et-white);
    margin-bottom: 24px;
}

.et-post-hero__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.et-post-hero__date { font-size: 12px; color: var(--et-gray); margin-top: 2px; }

.et-post-hero__stats { display: flex; gap: 12px; align-items: center; }

.et-post-hero__comments {
    font-size: 12px;
    color: var(--et-gray);
    background: var(--et-dark3);
    padding: 3px 10px;
    border-radius: 12px;
}

/* Post layout */
.et-post-layout { padding: 48px 0; }

.et-post-layout__inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

/* Post body */
.et-post-body {
    font-family: var(--et-font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--et-gray2);
}

.et-post-body h2, .et-post-body h3, .et-post-body h4 {
    color: var(--et-white);
    margin: 2rem 0 1rem;
    font-family: var(--et-font-display);
    text-transform: uppercase;
}

.et-post-body h2 { font-size: 28px; }
.et-post-body h3 { font-size: 22px; }
.et-post-body h4 { font-size: 18px; }

.et-post-body p { margin-bottom: 1.3rem; }

.et-post-body a { color: var(--et-lime); text-decoration: underline; text-decoration-color: rgba(200,242,60,0.4); transition: text-decoration-color 0.15s; }
.et-post-body a:hover { text-decoration-color: var(--et-lime); }

.et-post-body blockquote {
    border-left: 3px solid var(--et-lime);
    padding: 16px 24px;
    margin: 2rem 0;
    background: var(--et-dark2);
    border-radius: 0 6px 6px 0;
    font-family: var(--et-font-semi);
    font-size: 17px;
    font-style: italic;
    color: var(--et-white);
}

.et-post-body img { border-radius: 6px; margin: 1.5rem 0; }

.et-post-body ul, .et-post-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.3rem;
    list-style: revert;
}

.et-post-body li { margin-bottom: 0.4rem; }

.et-post-body code {
    background: var(--et-dark3);
    color: var(--et-lime);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    font-family: monospace;
}

.et-post-body pre {
    background: var(--et-dark2);
    border: 1px solid var(--et-border2);
    border-radius: 6px;
    padding: 20px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.et-post-body pre code { background: none; padding: 0; color: var(--et-gray2); }

.et-post-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 14px; }
.et-post-body th { background: var(--et-dark2); color: var(--et-lime); font-family: var(--et-font-display); text-transform: uppercase; font-size: 11px; letter-spacing: 0.08em; padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--et-border); }
.et-post-body td { padding: 10px 14px; border-bottom: 1px solid var(--et-border2); color: var(--et-gray2); }
.et-post-body tr:last-child td { border-bottom: none; }

/* Post tags */
.et-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--et-border2);
}

.et-post-tags__label {
    font-family: var(--et-font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--et-gray);
}

/* Post navigation */
.et-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--et-border2);
    border: 1px solid var(--et-border2);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 2rem;
}

.et-post-nav__item {
    background: var(--et-dark2);
    padding: 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: background 0.15s;
}

.et-post-nav__item:hover { background: var(--et-dark3); }

.et-post-nav__item--next { text-align: right; }

.et-post-nav__direction {
    font-family: var(--et-font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--et-lime);
}

.et-post-nav__title {
    font-family: var(--et-font-semi);
    font-size: 14px;
    font-weight: 600;
    color: var(--et-white);
    line-height: 1.35;
    transition: color 0.15s;
}

.et-post-nav__item:hover .et-post-nav__title { color: var(--et-lime); }

/* Sidebar post relacionado */
.et-related-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--et-border2);
    text-decoration: none;
    color: inherit;
    transition: opacity 0.15s;
}

.et-related-item:last-child { border-bottom: none; }
.et-related-item:hover { opacity: 0.8; }

.et-related-item__img { width: 64px; height: 64px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.et-related-item__img img { width: 100%; height: 100%; object-fit: cover; }

.et-related-item__title {
    font-family: var(--et-font-semi);
    font-size: 13px;
    font-weight: 600;
    color: var(--et-white);
    line-height: 1.35;
    margin-bottom: 4px;
}

.et-related-item__time { font-size: 11px; color: var(--et-gray); }

/* ═══════════ NEWSLETTER ═══════════ */
.et-newsletter {
    background: var(--et-lime);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.et-newsletter::before {
    content: 'ET';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--et-font-display);
    font-size: 260px;
    font-weight: 900;
    color: rgba(0,0,0,0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.et-newsletter__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.et-newsletter__copy h2 {
    font-family: var(--et-font-display);
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--et-black);
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.et-newsletter__copy p { font-size: 15px; color: rgba(0,0,0,0.6); max-width: 380px; line-height: 1.6; margin: 0; }

.et-newsletter__form,
.et-newsletter__default-form { display: flex; flex-shrink: 0; }

.et-newsletter__input,
.et-newsletter__default-form input[type="email"] {
    font-family: var(--et-font-body);
    font-size: 14px;
    background: rgba(0,0,0,0.12);
    border: 1.5px solid rgba(0,0,0,0.2);
    border-right: none;
    border-radius: 6px 0 0 6px;
    padding: 13px 18px;
    color: var(--et-black);
    width: 280px;
    outline: none;
    transition: all 0.15s;
}

.et-newsletter__input::placeholder,
.et-newsletter__default-form input[type="email"]::placeholder { color: rgba(0,0,0,0.4); }

.et-newsletter__btn,
.et-newsletter__default-form button[type="submit"] {
    font-family: var(--et-font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--et-black);
    color: var(--et-lime);
    border: none;
    padding: 13px 22px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.et-newsletter__btn:hover,
.et-newsletter__default-form button[type="submit"]:hover { background: var(--et-dark2); }

/* ═══════════ TAGS ═══════════ */
.et-tags-section {
    padding: 36px 0;
    background: var(--et-dark);
    border-top: 1px solid var(--et-border2);
}

.et-tags-section__header { margin-bottom: 16px; }

.et-tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }

.et-tag {
    font-family: var(--et-font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 13px;
    border: 1px solid var(--et-border2);
    border-radius: 3px;
    color: var(--et-gray2);
    transition: all 0.15s;
    text-decoration: none;
    display: inline-block;
}

.et-tag:hover { border-color: var(--et-lime); color: var(--et-lime); background: var(--et-lime-dim); }

/* ═══════════ FOOTER ═══════════ */
.et-footer {
    background: var(--et-dark);
    border-top: 1px solid var(--et-border2);
    padding: 56px 0 0;
}

.et-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.et-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    text-decoration: none;
}

.et-footer__logo-mark {
    width: 30px;
    height: 30px;
    background: var(--et-lime);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.et-footer__logo-name { font-family: var(--et-font-display); font-size: 18px; font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase; color: var(--et-white); }
.et-footer__logo-name span { color: var(--et-lime); }

.et-footer__tagline { font-size: 13px; line-height: 1.65; color: var(--et-gray); margin-bottom: 18px; }

.et-footer__social { display: flex; gap: 8px; }

.et-footer__social-btn {
    width: 36px;
    height: 36px;
    background: var(--et-dark3);
    border: 1px solid var(--et-border2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--et-gray2);
    transition: all 0.15s;
}

.et-footer__social-btn:hover { background: var(--et-lime); color: var(--et-black); border-color: var(--et-lime); }

.et-footer__col-title {
    font-family: var(--et-font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--et-lime);
    margin-bottom: 14px;
}

.et-footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.et-footer__links li a {
    font-size: 13px;
    color: var(--et-gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s;
}

.et-footer__links li a::before { content: '→'; font-size: 10px; color: var(--et-lime); opacity: 0; transition: opacity 0.15s; }
.et-footer__links li a:hover { color: var(--et-white); }
.et-footer__links li a:hover::before { opacity: 1; }

.et-footer__bottom {
    border-top: 1px solid var(--et-border2);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--et-gray);
    flex-wrap: wrap;
    gap: 8px;
}

.et-footer__bottom a { color: var(--et-lime); text-decoration: none; }

/* ═══════════ ARCHIVE ═══════════ */
.et-archive .et-section-title { margin-bottom: 8px; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1100px) {
    .et-hero__layout    { grid-template-columns: 1fr; }
    .et-hero__sidebar   { display: none; }
    .et-featured-grid   { grid-template-columns: 1fr 1fr; }
    .et-featured-sidebar{ display: none; }
    .et-card--lg        { grid-column: 1 / -1; grid-row: auto; }
    .et-post-layout__inner { grid-template-columns: 1fr; }
    .et-post-sidebar    { display: none; }
    .et-footer__grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .et-nav__links      { display: none; }
    .et-nav__search     { display: none; }
    .et-nav__toggle     { display: flex; }
    .et-latest-grid     { grid-template-columns: 1fr; }
    .et-featured-grid   { grid-template-columns: 1fr; }
    .et-newsletter__inner { flex-direction: column; gap: 24px; }
    .et-newsletter__default-form { flex-direction: column; }
    .et-newsletter__default-form input[type="email"] { border-right: 1.5px solid rgba(0,0,0,0.2); border-radius: 6px; width: 100%; }
    .et-newsletter__default-form button { border-radius: 6px; }
    .et-footer__grid    { grid-template-columns: 1fr; }
    .et-post-nav        { grid-template-columns: 1fr; }
    .et-list-item__meta,
    .et-list-item__cat  { display: none; }
    .et-hero__main      { padding: 40px 0; }
}

@media (max-width: 480px) {
    .et-post-hero__title { font-size: 30px; }
    .et-footer__bottom  { flex-direction: column; text-align: center; }
}
