:root {
  --ao-red: #c41212;
  --ao-red-dark: #9d0d0d;
  --ao-black: #111111;
  --ao-charcoal: #262626;
  --ao-gray-100: #f5f5f5;
  --ao-gray-200: #e5e5e5;
  --ao-gray-300: #cfcfcf;
  --ao-white: #ffffff;
  --ao-container: 1220px;
  --ao-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  --ao-font-main: "Cordia New", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--ao-white);
  color: var(--ao-black);
  font-family: var(--ao-font-main);
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #1f6feb;
  outline-offset: 2px;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--ao-container), calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  background: #fff;
  padding: 8px 10px;
  border: 2px solid var(--ao-red);
  z-index: 1200;
}

.utility-bar {
  background: var(--ao-black);
  color: #ddd;
  border-bottom: 1px solid #1f1f1f;
  font-size: 0.95rem;
}

.utility-content {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.utility-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.utility-tag {
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 0 #ececec;
}

.header-main {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 220px;
  height: 56px;
  object-fit: contain;
}

.brand-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--ao-red);
  color: #fff;
  font-size: 1rem;
  padding: 10px 14px;
  cursor: pointer;
}

.header-search {
  margin-left: auto;
  width: min(430px, 44vw);
  position: relative;
}

.header-search-form {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--ao-gray-300);
  background: #fff;
  min-height: 40px;
}

.header-search-input {
  flex: 1;
  border: 0;
  background: #fff;
  padding: 0 10px;
  color: #111;
  font-size: 1rem;
}

.header-search-input:focus {
  outline: none;
}

.header-search-btn {
  border: 0;
  background: var(--ao-red);
  color: #fff;
  padding: 0 14px;
  font-weight: 700;
  cursor: pointer;
}

.header-search-btn:hover {
  background: var(--ao-red-dark);
}

.header-search-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--ao-gray-300);
  box-shadow: var(--ao-shadow);
  z-index: 1205;
  max-height: 340px;
  overflow: auto;
  display: none;
}

.header-search-results.open {
  display: block;
}

.header-search-item {
  border-bottom: 1px solid var(--ao-gray-200);
}

.header-search-item:last-child {
  border-bottom: 0;
}

.header-search-link {
  display: block;
  padding: 8px 10px;
}

.header-search-link:hover,
.header-search-link:focus-visible {
  background: #f6f6f6;
}

.header-search-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.header-search-meta {
  margin: 4px 0 0;
  color: #666;
  font-size: 0.84rem;
}

.header-search-empty {
  margin: 0;
  padding: 10px;
  color: #555;
  font-size: 0.95rem;
}

.main-nav {
  border-top: 1px solid var(--ao-gray-200);
  border-bottom: 1px solid var(--ao-gray-200);
  background: #fff;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  border-bottom: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ao-red);
  border-bottom-color: var(--ao-red);
  background: #f9f9f9;
}

.nav-item-with-dropdown {
  position: relative;
}

.nav-item-with-dropdown > .nav-link {
  padding-right: 30px;
}

.nav-item-with-dropdown > .nav-link::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-62%) rotate(45deg);
}

.nav-item-with-dropdown.open > .nav-link::after {
  transform: translateY(-35%) rotate(-135deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--ao-gray-300);
  box-shadow: var(--ao-shadow);
  display: none;
  z-index: 1210;
}

.nav-item-with-dropdown.open .nav-dropdown {
  display: block;
}

.nav-dropdown-link {
  display: block;
  padding: 10px 12px;
  font-weight: 700;
  border-bottom: 1px solid var(--ao-gray-200);
}

.nav-dropdown-link:last-child {
  border-bottom: 0;
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible,
.nav-dropdown-link.active {
  background: #f7f7f7;
  color: var(--ao-red);
}

@media (hover: hover) and (pointer: fine) {
  .nav-item-with-dropdown:hover .nav-dropdown {
    display: block;
  }

  .nav-item-with-dropdown:hover > .nav-link {
    color: var(--ao-red);
    border-bottom-color: var(--ao-red);
    background: #f9f9f9;
  }
}

.breaking-strip {
  background: var(--ao-red);
  color: #fff;
  border-bottom: 2px solid #960f0f;
}

.breaking-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.breaking-label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  background: #111;
  padding: 4px 8px;
}

.breaking-text {
  font-size: 1.03rem;
  font-weight: 700;
}

.breaking-link {
  color: #fff;
  text-decoration: none;
}

.breaking-link:hover,
.breaking-link:focus-visible {
  text-decoration: underline;
}

main {
  flex: 1 0 auto;
  padding: 20px 0 34px;
}

.weather-hero {
  margin-top: -20px;
  border-bottom: 2px solid var(--ao-gray-200);
  background: #111;
}

.weather-hero img {
  width: 100%;
  height: clamp(220px, 38vw, 420px);
  object-fit: cover;
}

.weather-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  margin-top: 20px;
}

.weather-main {
  min-width: 0;
}

.weather-box {
  border: 1px solid var(--ao-gray-200);
  background: #fff;
  margin-bottom: 16px;
}

.weather-box-body {
  padding: 12px;
}

.weather-lead {
  margin: 0 0 14px;
  color: #333;
  font-size: 1.05rem;
}

.weather-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.weather-updated {
  margin: 0;
  color: #555;
  font-size: 0.92rem;
}

.weather-now {
  border-left: 4px solid var(--ao-red);
  background: #f7f7f7;
  padding: 10px 12px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.weather-current-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.weather-current-icon {
  font-size: 1.6rem;
}

.weather-current-temp {
  display: block;
  font-size: 1.5rem;
  line-height: 1.1;
}

.weather-current-label {
  margin: 2px 0 0;
  font-size: 0.95rem;
  color: #333;
}

.weather-current-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 0.9rem;
  color: #444;
}

.weather-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.weather-day {
  border: 1px solid var(--ao-gray-200);
  padding: 10px;
  background: #fff;
}

.weather-day h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}

.weather-day p {
  margin: 0 0 4px;
  font-size: 0.96rem;
}

.weather-day-main {
  font-weight: 700;
}

.weather-source {
  margin: 10px 0 6px;
  font-size: 0.9rem;
  color: #555;
}

.weather-hourly-title {
  margin: 14px 0 8px;
  font-size: 1.12rem;
}

.weather-hourly-note {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: #666;
}

.weather-hourly-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  border: 1px solid var(--ao-gray-200);
  background: #fff;
  margin-bottom: 8px;
  cursor: grab;
}

.weather-hourly-wrap:active {
  cursor: grabbing;
}

.weather-hourly-wrap.dragging {
  cursor: grabbing;
}

.weather-hourly-row {
  display: flex;
  gap: 8px;
  padding: 8px;
  width: max-content;
  min-width: 100%;
}

.weather-hour-card {
  flex: 0 0 132px;
  border: 1px solid var(--ao-gray-200);
  background: #fafafa;
  padding: 8px;
}

.weather-hour-time {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 0.95rem;
}

.weather-hour-main {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
}

.weather-hour-desc {
  margin: 0 0 5px;
  font-size: 0.88rem;
  color: #333;
}

.weather-hour-meta {
  margin: 0;
  font-size: 0.83rem;
  color: #555;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
}

.section-title {
  margin: 0 0 14px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero-card {
  border: 1px solid var(--ao-gray-200);
  background: #fff;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  margin-bottom: 18px;
}

.hero-media {
  min-height: 290px;
  background: #222;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.hero-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: #111;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.4px;
  padding: 4px 8px;
  font-weight: 700;
}

.kicker-red {
  background: var(--ao-red);
}

.hero-title {
  margin: 0;
  font-size: clamp(1.8rem, 2.6vw, 2.45rem);
  line-height: 1.08;
}

.hero-summary {
  margin: 0;
  color: var(--ao-charcoal);
  font-size: 1.1rem;
}

.meta-row {
  color: #666;
  font-size: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-wall {
  border-top: 2px solid #121212;
  padding-top: 12px;
}

.news-wall-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.news-wall-grid > .alert-note {
  grid-column: 1 / -1;
}

.news-card {
  border: 1px solid var(--ao-gray-200);
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  background: #fff;
}

.news-thumb {
  width: 140px;
  height: 110px;
  object-fit: cover;
}

.news-content {
  padding: 0 10px 8px;
}

.news-card .kicker {
  margin-bottom: 9px;
}

.news-title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.08;
}

.news-title a:hover {
  color: var(--ao-red);
}

.news-excerpt {
  margin: 7px 0;
  color: #444;
  font-size: 0.98rem;
}

.sidebar {
  position: sticky;
  top: 140px;
  align-self: start;
}

.sidebar-box {
  border: 1px solid var(--ao-gray-200);
  margin-bottom: 16px;
  background: #fff;
}

.sidebar-head {
  margin: 0;
  font-size: 1.2rem;
  text-transform: uppercase;
  background: #111;
  color: #fff;
  padding: 10px 12px;
  letter-spacing: 0.3px;
}

.sidebar-head.red {
  background: var(--ao-red);
}

.sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-item {
  border-bottom: 1px solid var(--ao-gray-200);
}

.sidebar-item:last-child {
  border-bottom: 0;
}

.sidebar-link {
  display: block;
  padding: 10px 12px;
}

.sidebar-link:hover {
  background: #f6f6f6;
}

.sidebar-title {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.15;
}

.sidebar-meta {
  margin-top: 4px;
  font-size: 0.85rem;
  color: #666;
}

.sidebar-link-active {
  border-left: 3px solid var(--ao-red);
  background: #f7f7f7;
  padding-left: 9px;
}

.sidebar-link-active .sidebar-title {
  color: var(--ao-red);
}

.sidebar-body {
  padding: 12px;
}

.sidebar-cta-wrap {
  margin: 12px 0 0;
}

.sidebar-cta-btn {
  display: block;
  text-align: center;
}

.sidebar-weather {
  padding: 12px;
  border-top: 1px solid var(--ao-gray-200);
}

.sidebar-weather-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-weather-icon {
  font-size: 1.45rem;
}

.sidebar-weather-temp {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
}

.sidebar-weather-label {
  margin: 3px 0 0;
  font-size: 0.93rem;
  color: #333;
}

.sidebar-weather-meta {
  margin: 8px 0 0;
  display: grid;
  gap: 2px;
  color: #555;
  font-size: 0.87rem;
}

.aktualno-lead {
  margin: 0 0 14px;
  font-size: 1.06rem;
  color: #343434;
}

.horoscope-signs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.horoscope-sign-btn {
  border: 1px solid var(--ao-gray-200);
  background: #fff;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.horoscope-sign-btn:hover,
.horoscope-sign-btn:focus-visible {
  background: #f7f7f7;
  border-color: #bdbdbd;
}

.horoscope-sign-btn.active {
  border-color: var(--ao-red);
  color: var(--ao-red);
  box-shadow: inset 0 -2px 0 var(--ao-red);
}

.horoscope-sign-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.horoscope-sign-label {
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 700;
  color: var(--ao-red);
}

.horoscope-selected {
  display: block;
}

.horoscope-card {
  border: 1px solid var(--ao-gray-200);
  border-top: 3px solid #111;
  background: #fff;
  padding: 12px;
}

.horoscope-card-single {
  padding: 14px;
}

.horoscope-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid var(--ao-gray-200);
  padding-bottom: 6px;
  margin-bottom: 8px;
}

.horoscope-card-head h2,
.horoscope-card-head h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.1;
}

.horoscope-card-head h2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.horoscope-selected-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: inline-block;
}

.horoscope-card-head p {
  margin: 0;
  color: #555;
  font-size: 0.9rem;
}

.horoscope-text {
  margin: 0;
  color: #333;
  font-size: 1.02rem;
}

.generic-page {
  border: 1px solid var(--ao-gray-200);
  padding: 24px;
  background: #fff;
}

.generic-page h1,
.generic-page h2,
.generic-page h3 {
  line-height: 1.15;
}

.generic-page h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.generic-page p,
.generic-page li {
  font-size: 1.07rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form,
.inline-form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  gap: 6px;
}

label {
  font-weight: 700;
}

input,
textarea,
select,
button {
  font: inherit;
}

input,
textarea,
select {
  border: 1px solid #bdbdbd;
  padding: 10px;
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.button,
button,
.btn {
  border: 0;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 700;
}

.button:hover,
button:hover,
.btn:hover {
  background: #2a2a2a;
}

.button.red,
.btn.red {
  background: var(--ao-red);
}

.button.red:hover,
.btn.red:hover {
  background: var(--ao-red-dark);
}

.button.ghost,
.btn.ghost {
  background: #efefef;
  color: #111;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
}

.article-main {
  border: 1px solid var(--ao-gray-200);
  background: #fff;
  padding: 20px;
}

.article-main h1 {
  margin: 10px 0;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.05;
}

.article-subtitle {
  margin: 0 0 14px;
  font-size: 1.25rem;
  color: #333;
}

.article-hero {
  margin: 0 0 18px;
}

.article-hero img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
}

.article-body p {
  margin: 0 0 14px;
  font-size: 1.12rem;
}

.article-body .article-inline-link {
  color: var(--ao-red);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}

.article-body .article-inline-link:hover,
.article-body .article-inline-link:focus-visible {
  color: var(--ao-red-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.gallery-item-btn {
  padding: 0;
  border: 0;
  background: #fff;
  cursor: zoom-in;
  display: block;
  width: 100%;
}

.gallery-item-btn img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border: 1px solid var(--ao-gray-200);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  padding: 18px;
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox-inner {
  position: relative;
  width: min(1240px, 100%);
  max-height: 92vh;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 10px;
}

.gallery-lightbox-figure {
  margin: 0;
}

.gallery-lightbox-figure img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #0d0d0d;
}

.gallery-lightbox-meta {
  color: #f3f3f3;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  margin-top: 8px;
}

.gallery-lightbox-nav,
.gallery-lightbox-close {
  border: 1px solid #3d3d3d;
  background: rgba(20, 20, 20, 0.88);
  color: #fff;
}

.gallery-lightbox-nav {
  width: 56px;
  height: 56px;
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.gallery-lightbox-close {
  position: absolute;
  top: -12px;
  right: -8px;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 1;
  z-index: 2;
}

body.lightbox-open {
  overflow: hidden;
}

.related-grid {
  display: grid;
  gap: 10px;
}

.related-card {
  border: 1px solid var(--ao-gray-200);
  display: grid;
  grid-template-columns: 115px minmax(0, 1fr);
}

.related-card img {
  width: 115px;
  height: 84px;
  object-fit: cover;
}

.related-body {
  padding: 8px;
}

.footer {
  background: #101010;
  color: #f0f0f0;
  margin-top: auto;
  border-top: 3px solid var(--ao-red);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 0;
}

.footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--ao-red);
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 12px 0 18px;
  color: #cbcbcb;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #111;
  color: #fff;
  border: 1px solid #2f2f2f;
  box-shadow: var(--ao-shadow);
  z-index: 1400;
  padding: 14px;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  display: none;
  z-index: 1500;
  padding: 24px 12px;
}

.cookie-modal.visible {
  display: grid;
  place-items: center;
}

.cookie-modal-card {
  width: min(780px, 100%);
  background: #fff;
  border: 2px solid #111;
  padding: 20px;
  max-height: 90vh;
  overflow: auto;
}

.cookie-option {
  border: 1px solid var(--ao-gray-200);
  padding: 10px;
  margin-bottom: 8px;
}

.cookie-option-title {
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  padding: 2px 7px;
  background: #202020;
  color: #fff;
}

.badge.red {
  background: var(--ao-red);
}

.alert-note {
  border-left: 4px solid var(--ao-red);
  background: #f9f9f9;
  padding: 10px 12px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.community-card {
  border: 1px solid var(--ao-gray-200);
}

.community-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.community-card-body {
  padding: 10px;
}

.embed-wrap {
  border: 1px solid var(--ao-gray-300);
  background: #f7f7f7;
  padding: 12px;
}

.table-responsive {
  overflow-x: auto;
}

.news-table {
  width: 100%;
  border-collapse: collapse;
}

.news-table th,
.news-table td {
  border: 1px solid var(--ao-gray-300);
  padding: 8px;
  text-align: left;
  font-size: 0.95rem;
}
