/* ==========================================================================
   ABC News Theme – main stylesheet
   Reset + base
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0a0a0a;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 1024px) {
  .container { padding: 0 24px; }
}

/* ==========================================================================
   Reusable atoms
   ========================================================================== */
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d61f1f;
  box-shadow: 0 0 0 0 rgba(214, 31, 31, 0.7);
  animation: pulse 1.6s infinite;
}
.dot--red { background: #d61f1f; }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(214, 31, 31, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(214, 31, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(214, 31, 31, 0); }
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a73e8;
  margin-bottom: 6px;
}
.tag--ad {
  background: #cc0000;
  color: #fff;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}
.tag--lifestyle { color: #c83aa8; }

.timestamp {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #70757a;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 9px;
  background: #cc0000;
  color: #fff;
  border-radius: 3px;
}
.badge--live { position: absolute; top: 10px; left: 10px; z-index: 2; }

.chev { color: #1a73e8; font-weight: 700; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn--pill {
  background: #1a73e8;
  color: #fff;
}
.btn--watch {
  background: #cc0000;
  color: #fff;
}
.btn__chev { font-size: 16px; line-height: 1; }

.icon-btn {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #1a1a1a;
  background: transparent;
  transition: background 0.15s ease;
}
.icon-btn:hover { background: rgba(0, 0, 0, 0.06); }

/* ==========================================================================
   Logo
   ========================================================================== */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #111;
}
.logo:hover { text-decoration: none; }

.logo__circle {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.04em;
}
.logo__circle--white { background: #fff; color: #111; }
.logo__circle--sm { width: 24px; height: 24px; font-size: 10px; }
.logo__circle--xs { width: 22px; height: 22px; font-size: 9px; vertical-align: middle; }

.logo__word {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #111;
}
.logo__word--white { color: #fff; }
.logo__word--sm { font-size: 14px; }
.logo__word--xs { font-size: 12px; vertical-align: middle; }

/* ==========================================================================
   Top alert bar
   ========================================================================== */
.top-alert {
  background: #cc0000;
  color: #fff;
  font-size: 13px;
  position: relative;
}
.top-alert__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-alert__inner p { margin: 0; flex: 1; overflow: hidden; text-overflow: ellipsis; }
.top-alert__inner .top-alert__icon { flex: 0 0 auto; }
.top-alert__inner .dot {
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulseWhite 1.6s infinite;
}
@keyframes pulseWhite {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.top-alert__cta {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  flex: 0 0 auto;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header__secondary {
  background: #0a0a0a;
  color: #fff;
  display: none;
}
.site-header__secondary-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 32px;
  gap: 18px;
}
.site-header__secondary .btn--pill {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 4px 14px;
  font-size: 12px;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.social-links a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #fff;
  color: #0a0a0a;
  font-weight: 700;
  font-size: 13px;
  font-family: "Roboto Condensed", sans-serif;
  text-decoration: none;
}
.social-links a:hover { background: #1a73e8; color: #fff; }
.social-links--dark a { background: #2a2a2a; color: #fff; }
.social-links--dark a:hover { background: #1a73e8; }

.site-header__main {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  min-height: 56px;
}

.site-header__center {
  flex: 1;
  overflow: hidden;
}

.quick-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
}
.quick-nav::-webkit-scrollbar { display: none; }

.quick-nav__item {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.quick-nav__item:hover { color: #1a73e8; text-decoration: none; }
.quick-nav__item--live { color: #cc0000; }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-btn {
  width: 36px; height: 36px;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
}
.menu-btn span {
  display: block;
  width: 18px; height: 2px;
  background: #111;
}

.main-nav {
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #ececec;
  overflow: hidden;
  display: none;
}
.main-nav__row {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 42px;
  overflow-x: auto;
  scrollbar-width: none;
}
.main-nav__row::-webkit-scrollbar { display: none; }
.main-nav__item {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.main-nav__item:hover { color: #1a73e8; text-decoration: none; }
.main-nav__item--live { color: #cc0000; }
.main-nav__sep {
  width: 1px; height: 16px; background: #d8d8d8; display: inline-block;
}

/* search overlay */
.search-overlay {
  background: #fff;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.search-overlay__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
}
.search-overlay__inner input {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 16px;
  padding: 8px 0;
  background: transparent;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 24px;
}
@media (min-width: 1024px) {
  .hero {
    grid-template-columns: 2fr 1.1fr;
    gap: 32px;
    padding-top: 24px;
  }
}

.card { display: block; }
.card--hero { display: block; }
.card__media {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16 / 9;
  background: #f1f1f1;
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card__media img { transform: scale(1.02); }
.card__body { padding-top: 12px; }
.card__title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}
@media (min-width: 1024px) {
  .card__title { font-size: 30px; }
}
.card__excerpt {
  margin: 8px 0 0;
  color: #555;
  font-size: 14px;
}

.hero__side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) and (max-width: 1023.98px) {
  .hero__side { grid-template-columns: 1fr 1fr; }
}

.side-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: start;
  padding-bottom: 12px;
  border-bottom: 1px solid #ececec;
}
.side-card:last-child { border-bottom: 0; }
.side-card--text {
  grid-template-columns: 1fr;
  padding: 12px 0;
  border-bottom: 1px solid #ececec;
}
.side-card__media {
  display: block;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 1 / 1;
  background: #f1f1f1;
}
.side-card__media img { width: 100%; height: 100%; object-fit: cover; }
.side-card__body { min-width: 0; }
.side-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

/* ==========================================================================
   Ad strip
   ========================================================================== */
.ad-strip {
  margin-bottom: 24px;
}
.ad-banner {
  display: block;
  background: #f1f1f1;
  border: 1px solid #ececec;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 12 / 1;
}
.ad-banner img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Section & title
   ========================================================================== */
.section {
  padding: 16px 0 24px;
  border-top: 4px solid #111;
  margin-top: 8px;
}
.section:first-of-type { border-top: 0; }

.section__title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ececec;
}
@media (min-width: 768px) { .section__title { font-size: 24px; } }
.section__title--inline {
  display: flex; align-items: center; gap: 8px;
}
.section__title--centered { text-align: center; border-bottom: 0; }

/* ==========================================================================
   Text list
   ========================================================================== */
.text-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 4px 0;
}
@media (min-width: 768px) {
  .text-list { grid-template-columns: 1fr 1fr; }
  .text-list--two-col { grid-template-columns: 1fr; }
}
.text-list li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a1a;
}
.text-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: #cc0000;
  border-radius: 50%;
}
.text-list a:hover { color: #1a73e8; text-decoration: underline; }

.show-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #1a73e8;
}

/* ==========================================================================
   Video grid
   ========================================================================== */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.video-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background: #111;
}
.video-card--lead .video-card__media {
  aspect-ratio: 16 / 10;
}
.video-card__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.video-card--lead .play-btn { width: 64px; height: 64px; }
.duration {
  position: absolute;
  right: 8px; bottom: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 2px;
}
.video-card__body { padding-top: 10px; }
.video-card__body h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

/* ==========================================================================
   Card row (multiple stories)
   ========================================================================== */
.card-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.card-row--2 { grid-template-columns: repeat(2, 1fr); }
.card-row--3 { grid-template-columns: repeat(2, 1fr); }
.card-row--4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
  .card-row--3 { grid-template-columns: repeat(3, 1fr); }
  .card-row--4 { grid-template-columns: repeat(4, 1fr); }
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.story-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 3px;
  overflow: hidden;
  background: #f1f1f1;
}
.story-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.story-card:hover .story-card__media img { transform: scale(1.03); }
.story-card__title {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}
.story-card__excerpt {
  font-size: 13px;
  color: #555;
  margin: 0;
}
.story-card--horizontal .story-card__title { font-size: 14px; }

/* ==========================================================================
   App banner
   ========================================================================== */
.app-banner {
  position: relative;
  background: #0a2342;
  color: #fff;
  border-radius: 6px;
  padding: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .app-banner { grid-template-columns: 1.4fr 1fr; padding: 32px; }
}
.app-banner__brand {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 12px;
}
.app-banner__brand .logo__circle { background: #fff; color: #0a2342; }
.app-banner__brand .logo__word { color: #fff; }
.app-banner h3 { color: #fff; font-size: 22px; }
.app-banner p { color: #c9d2e0; font-size: 14px; margin: 8px 0 16px; }
.app-banner__stores {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.store-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}
.store-btn::before {
  content: "";
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 4px;
}
.store-btn--play::before { background: #34a853; clip-path: polygon(0 0, 100% 50%, 0 100%); }

.app-banner__phones {
  position: relative;
  height: 180px;
  display: none;
}
@media (min-width: 768px) { .app-banner__phones { display: block; } }
.phone {
  position: absolute;
  width: 110px; height: 200px;
  background: #1a1a1a;
  border: 4px solid #2a2a2a;
  border-radius: 18px;
}
.phone::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: linear-gradient(135deg, #1a73e8, #0a2342);
  border-radius: 12px;
}
.phone--1 { left: 0; top: 0; transform: rotate(-8deg); }
.phone--2 { left: 50%; top: -10px; transform: translateX(-50%) rotate(0deg); z-index: 2; }
.phone--3 { right: 0; top: 0; transform: rotate(8deg); }

/* ==========================================================================
   Lifestyle feature
   ========================================================================== */
.lifestyle-feature {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  color: #fff;
  display: block;
}
.lifestyle-feature__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #111;
}
.lifestyle-feature__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
}
.lifestyle-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-feature__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px;
}
.lifestyle-feature__body h2 {
  color: #fff;
  font-size: 28px;
  line-height: 1.1;
  margin: 8px 0;
}
@media (min-width: 768px) {
  .lifestyle-feature__body h2 { font-size: 40px; }
}
.lifestyle-feature__body p { color: #d6d6d6; font-size: 14px; margin: 0; }
.lifestyle-feature__body .tag--lifestyle { color: #f6c; }

/* ==========================================================================
   World Cup strip
   ========================================================================== */
.worldcup-strip {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 6;
  background: #f1f1f1;
}
.worldcup-strip img { width: 100%; height: 100%; object-fit: cover; }
.worldcup-caption {
  margin: 10px auto 0;
  max-width: 720px;
  text-align: center;
  color: #555;
  font-size: 13px;
}

/* ==========================================================================
   Grid layouts (2 col, 4 col)
   ========================================================================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 40px; }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.topic-col__title {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #ececec;
  display: flex; align-items: center; gap: 6px;
}
.topic-card {
  margin-bottom: 14px;
}
.topic-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 3px;
  overflow: hidden;
  background: #f1f1f1;
  margin-bottom: 8px;
}
.topic-card__media img { width: 100%; height: 100%; object-fit: cover; }
.topic-card h4 {
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 4px;
}
.topic-card p {
  margin: 0;
  font-size: 12px;
  color: #70757a;
}

/* ==========================================================================
   GMA band
   ========================================================================== */
.gma-band {
  background: #fff7d6;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #f5e8a4;
}
.gma-band__head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.gma-band__head h2 { font-size: 22px; }
.gma-band__logo {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 900;
  font-size: 18px;
  color: #b67c00;
}
.gma-band__sun {
  width: 24px; height: 24px;
  background: radial-gradient(circle, #f1c40f 30%, #e67e22 70%);
  border-radius: 50%;
  display: inline-block;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #0a0a0a;
  color: #d6d6d6;
  padding: 32px 0 20px;
  margin-top: 40px;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #2a2a2a;
}
@media (min-width: 768px) {
  .site-footer__top {
    grid-template-columns: 200px 1fr;
    gap: 32px;
  }
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 768px) { .site-footer__cols { grid-template-columns: repeat(4, 1fr); } }
.site-footer__col h5 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.site-footer__col li { margin-bottom: 6px; }
.site-footer__col a {
  color: #b8b8b8;
  font-size: 13px;
}
.site-footer__col a:hover { color: #fff; }

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  font-size: 12px;
  color: #888;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ==========================================================================
   Mobile drawer
   ========================================================================== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 90;
}

.mobile-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 86%;
  max-width: 340px;
  background: #fff;
  z-index: 100;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #ececec;
}
.mobile-drawer__list li a {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #f1f1f1;
}
.mobile-drawer__list li a:hover { background: #f7f7f7; text-decoration: none; }

/* ==========================================================================
   Breakpoints helpers
   ========================================================================== */
.btn--hide-mobile { display: none; }
@media (min-width: 768px) { .btn--hide-mobile { display: inline-flex; } }

@media (max-width: 1023.98px) {
  .site-header__secondary { display: none; }
  .main-nav { display: none; }
}

/* ==========================================================================
   Subtle hovers
   ========================================================================== */
a:focus-visible, button:focus-visible {
  outline: 2px solid #1a73e8;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ==========================================================================
   WordPress core align / captions / widgets
   ========================================================================== */
.alignleft   { float: left;  margin: 0 16px 8px 0; }
.alignright  { float: right; margin: 0 0 8px 16px; }
.aligncenter { display: block; margin: 0 auto 8px; }
.alignwide   { max-width: 1400px; margin-left: auto; margin-right: auto; }
.alignfull   { max-width: 100%; width: 100%; }

.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: #70757a; padding: 6px 0; }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.sticky {}

/* Widgets */
.widget { margin-bottom: 24px; }
.widget-title {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #ececec;
  display: flex; align-items: center; gap: 6px;
}
.widget ul { padding: 0; margin: 0; list-style: none; }
.widget ul li { padding: 6px 0; border-bottom: 1px solid #f1f1f1; }
.widget ul li:last-child { border-bottom: 0; }
.widget select { width: 100%; padding: 6px; }

/* Pagination */
.pagination { margin: 20px 0; display: flex; gap: 6px; flex-wrap: wrap; }
.pagination a, .pagination span {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #ececec;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
}
.pagination .current { background: #1a73e8; color: #fff; border-color: #1a73e8; }

/* Comments */
.comments-area { margin-top: 32px; padding-top: 24px; border-top: 4px solid #111; }
.comments-title { font-size: 20px; font-weight: 900; margin-bottom: 16px; }
.comment-list { list-style: none; padding: 0; margin: 0; }
.comment-body { padding: 12px 0; border-bottom: 1px solid #ececec; }
.comment-author { font-weight: 700; }
.comment-metadata { font-size: 12px; color: #70757a; }
.comment-content { margin-top: 6px; }

/* Single post */
.entry-title { font-size: 32px; line-height: 1.15; margin-bottom: 12px; }
.entry-meta { font-size: 13px; color: #70757a; margin-bottom: 16px; }
.entry-content { font-size: 16px; line-height: 1.6; }
.entry-content p { margin: 0 0 16px; }
.entry-content h2 { font-size: 24px; margin: 24px 0 12px; }
.entry-content h3 { font-size: 20px; margin: 20px 0 10px; }
.entry-content img { border-radius: 4px; }
.entry-content blockquote { border-left: 4px solid #cc0000; padding: 8px 16px; margin: 16px 0; color: #555; }

/* 404 */
.error-404 { text-align: center; padding: 60px 16px; }
.error-404 h1 { font-size: 80px; margin-bottom: 8px; }
.error-404 p { color: #555; margin-bottom: 20px; }
