.colibri-video-overlay {
  position: fixed;
  inset: 0;
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.colibri-video-overlay[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}
.colibri-video-overlay[aria-hidden=false] .colibri-video-card {
  transform: translateY(0) scale(1);
}

.colibri-video-card {
  position: relative;
  background: var(--bg-surface, #FFFFFF);
  border-radius: var(--radius-xl, 1rem);
  overflow: hidden;
  width: 55vw;
  max-width: 800px;
  box-shadow: 0 20px 60px -12px rgba(123, 8, 40, 0.3), 0 8px 20px -8px rgba(0, 0, 0, 0.2);
  transform: translateY(12px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.colibri-video-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, var(--primary-800, #5E061F), var(--primary-600, #9A0A33));
}

.colibri-video-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}

.colibri-video-quote {
  font-family: var(--font-heading, Georgia, serif);
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}
.colibri-video-quote em {
  font-style: italic;
  font-weight: 700;
  color: var(--highlight-400, #F4D35E);
  font-size: 1.15em;
}

.colibri-video-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  font-size: 0.85rem;
}
.colibri-video-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.colibri-video-player {
  padding: 0.5rem 0.5rem 0.65rem;
  background: var(--bg-surface, #FFFFFF);
}
.colibri-video-player video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  object-fit: contain;
  background: #000;
  border-radius: calc(var(--radius-xl, 1rem) - 4px);
}

@media (max-width: 992px) {
  .colibri-video-card {
    width: 75vw;
  }
}
@media (max-width: 768px) {
  .colibri-video-card {
    width: 90vw;
  }
  .colibri-video-header img {
    width: 28px;
    height: 28px;
  }
  .colibri-video-brand__name {
    font-size: 0.875rem;
  }
}
@media (max-width: 576px) {
  .colibri-video-overlay {
    padding: 16px;
  }
  .colibri-video-card {
    width: 95vw;
    border-radius: var(--radius-lg, 0.75rem);
  }
  .colibri-video-header {
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }
  .colibri-video-close {
    top: 0.6rem;
    right: 0.6rem;
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  .colibri-video-player {
    padding: 0.35rem 0.35rem 0.5rem;
  }
}
.ticker-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  padding: 0.65rem 0;
  position: relative;
  z-index: 10;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ticker-content p {
  margin-bottom: 0 !important;
  font-weight: 400;
}

.ticker-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary-100);
  color: var(--primary-700);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--accent-500);
  border-radius: 50%;
  animation: tickerPulse 2s ease-in-out infinite;
}

@keyframes tickerPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.ticker-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.ticker-controls {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}

.ticker-nav {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}
.ticker-nav:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--hover-bg);
}

.featured-news {
  padding: 1.5rem 0 2.5rem;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.25rem;
  min-height: 620px;
}

.news-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.news-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  transition: box-shadow var(--transition-base);
}
.news-card:hover {
  box-shadow: var(--shadow-lg);
}
.news-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.news-card__media {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-card:hover .news-card__media img {
  transform: scale(1.04);
}
.news-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.05) 100%);
  transition: opacity var(--transition-base);
}
.news-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}
.news-card__body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.news-card__title {
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  line-height: 1.25;
  margin-top: 0.4rem;
}
.news-card__subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 0.2rem;
}
.news-card__excerpt {
  font-family: var(--font-body);
  font-size: 0.84rem;
  line-height: 1.6;
  margin-top: 0.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card--hero .news-card__link {
  position: relative;
}
.news-card--hero .news-card__media {
  position: absolute;
  inset: 0;
  height: 100%;
}
.news-card--hero .news-card__content {
  padding: 2.25rem;
}
.news-card--hero .news-card__title {
  font-size: 1.85rem;
  color: #FFFFFF;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.news-card--hero .news-card__subtitle {
  color: rgba(255, 255, 255, 0.82);
}
.news-card--hero .news-card__excerpt {
  color: rgba(255, 255, 255, 0.72);
  -webkit-line-clamp: 3;
  line-clamp: 3;
  max-width: 92%;
}

.news-card--editorial {
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  flex: 1;
}
.news-card--editorial .news-card__link {
  flex-direction: row;
}
.news-card--editorial .news-card__media {
  width: 42%;
  min-width: 42%;
  flex-shrink: 0;
}
.news-card--editorial .news-card__media img {
  height: 100%;
}
.news-card--editorial .news-card__body {
  padding: 1rem 1.25rem;
  justify-content: center;
}
.news-card--editorial .news-card__title {
  font-size: 0.95rem;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card--editorial .news-card__excerpt {
  color: var(--text-secondary);
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 0.8rem;
}
.news-card--editorial:hover .news-card__title {
  color: var(--color-primary);
}

.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  width: fit-content;
}
.category-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.category-badge--blue {
  background: rgba(59, 130, 246, 0.2);
  color: #93bbfd;
  backdrop-filter: blur(8px);
}
.category-badge--blue::before {
  background: #3B82F6;
}
.category-badge--green {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  backdrop-filter: blur(8px);
}
.category-badge--green::before {
  background: #22c55e;
}
.category-badge--orange {
  background: rgba(249, 115, 22, 0.2);
  color: #fdba74;
  backdrop-filter: blur(8px);
}
.category-badge--orange::before {
  background: #f97316;
}
.category-badge--red {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  backdrop-filter: blur(8px);
}
.category-badge--red::before {
  background: #ef4444;
}
.category-badge--teal {
  background: rgba(20, 145, 155, 0.2);
  color: #7ed7d1;
  backdrop-filter: blur(8px);
}
.category-badge--teal::before {
  background: #14919b;
}
.category-badge--solid {
  backdrop-filter: none;
}
.category-badge--solid.category-badge--blue {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}
.category-badge--solid.category-badge--green {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
.category-badge--solid.category-badge--orange {
  background: rgba(249, 115, 22, 0.1);
  color: #ea580c;
}
.category-badge--solid.category-badge--red {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.category-badge--solid.category-badge--teal {
  background: rgba(20, 145, 155, 0.1);
  color: #0d7377;
}
.category-badge--small {
  font-size: 0.65rem;
  padding: 0.2rem 0.6rem;
  backdrop-filter: none;
}
.category-badge--small.category-badge--blue {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}
.category-badge--small.category-badge--green {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
.category-badge--small.category-badge--orange {
  background: rgba(249, 115, 22, 0.1);
  color: #ea580c;
}
.category-badge--small.category-badge--red {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.category-badge--small.category-badge--teal {
  background: rgba(20, 145, 155, 0.1);
  color: #0d7377;
}

.recent-news {
  padding: 2.5rem 0 3.5rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
}
.section-header .section-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: var(--font-bold);
  color: var(--text-primary);
}
.section-header a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: var(--font-semibold);
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.section-header a:hover {
  color: var(--primary-500);
}

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}
.article-item:first-child {
  padding-top: 0;
}
.article-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.article-item__thumb {
  width: 200px;
  min-width: 200px;
  height: 130px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}
.article-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.article-item:hover .article-item__thumb img {
  transform: scale(1.05);
}
.article-item__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  min-width: 0;
}
.article-item .article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.article-item .article-meta time {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.article-item__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: var(--font-bold);
  line-height: 1.25;
  color: var(--text-primary);
}
.article-item__title a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}
.article-item__title a:hover {
  color: var(--color-primary);
}
.article-item__excerpt {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

[data-theme=dark] .ticker-badge {
  background: rgba(214, 61, 106, 0.15);
  color: var(--primary-300);
}
[data-theme=dark] .news-card--editorial {
  background: var(--bg-surface);
  border-color: var(--border-color);
}
[data-theme=dark] .news-card--editorial .news-card__title {
  color: var(--text-primary);
}
[data-theme=dark] .news-card--editorial:hover .news-card__title {
  color: var(--accent-400);
}
[data-theme=dark] .category-badge--solid.category-badge--blue {
  background: rgba(59, 130, 246, 0.15);
  color: #93bbfd;
}
[data-theme=dark] .category-badge--solid.category-badge--green {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
}
[data-theme=dark] .category-badge--solid.category-badge--orange {
  background: rgba(249, 115, 22, 0.15);
  color: #fdba74;
}
[data-theme=dark] .category-badge--solid.category-badge--red {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
}
[data-theme=dark] .category-badge--solid.category-badge--teal {
  background: rgba(20, 145, 155, 0.15);
  color: #7ed7d1;
}
[data-theme=dark] .category-badge--small.category-badge--blue {
  background: rgba(59, 130, 246, 0.15);
  color: #93bbfd;
}
[data-theme=dark] .category-badge--small.category-badge--green {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
}
[data-theme=dark] .category-badge--small.category-badge--orange {
  background: rgba(249, 115, 22, 0.15);
  color: #fdba74;
}
[data-theme=dark] .category-badge--small.category-badge--red {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
}
[data-theme=dark] .category-badge--small.category-badge--teal {
  background: rgba(20, 145, 155, 0.15);
  color: #7ed7d1;
}
[data-theme=dark] .article-item__title a:hover {
  color: var(--accent-400);
}
[data-theme=dark] .section-header a:hover {
  color: var(--accent-400);
}

@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .news-card--hero {
    min-height: 420px;
  }
  .news-card--hero .news-card__title {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .featured-news {
    padding: 1rem 0 1.5rem;
  }
  .news-grid {
    gap: 1rem;
  }
  .news-card--hero {
    min-height: 340px;
  }
  .news-card--hero .news-card__content {
    padding: 1.25rem;
  }
  .news-card--hero .news-card__title {
    font-size: 1.25rem;
  }
  .news-card--hero .news-card__excerpt {
    display: none;
  }
  .news-card--hero .news-card__subtitle {
    display: none;
  }
  .news-card--editorial .news-card__link {
    flex-direction: row;
  }
  .news-card--editorial .news-card__media {
    width: 35%;
    min-width: 35%;
  }
  .news-card--editorial .news-card__title {
    font-size: 0.875rem;
  }
  .news-card--editorial .news-card__excerpt {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-size: 0.78rem;
  }
  .article-item {
    gap: 1rem;
  }
  .article-item__thumb {
    width: 140px;
    min-width: 140px;
    height: 100px;
  }
  .article-item__title {
    font-size: 0.95rem;
  }
  .article-item__excerpt {
    display: none;
  }
  .section-header .section-title {
    font-size: 1.35rem;
  }
}
@media (max-width: 576px) {
  .ticker-content {
    gap: 0.6rem;
  }
  .ticker-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.65rem;
  }
  .ticker-controls {
    display: none;
  }
  .news-card--hero {
    min-height: 280px;
  }
  .news-card--hero .news-card__title {
    font-size: 1.1rem;
  }
  .news-card--editorial .news-card__media {
    width: 30%;
    min-width: 30%;
  }
  .news-card--editorial .news-card__body {
    padding: 0.75rem 1rem;
  }
  .news-card--editorial .news-card__title {
    font-size: 0.82rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .news-card--editorial .news-card__excerpt {
    display: none;
  }
  .article-item__thumb {
    width: 90px;
    min-width: 90px;
    height: 70px;
  }
  .recent-news {
    padding: 1.5rem 0 2rem;
  }
}/*# sourceMappingURL=home.css.map */