@charset "UTF-8";
/**
 * FutebolDA — Frontend Base Styles
 *
 * Shared styles across all plugin pages.
 * Variables-first approach for easy theme customization.
 *
 * @package FutebolDA
 * @since   0.4.0
 */
/* ── CSS Variables ───────────────────────────── */
:root {
  --fda-primary: #088264;
  --fda-primary-dark: #066a52;
  --fda-primary-light: #B5DAD1;
  --fda-primary-bg: #E6F2EF;
  --fda-accent: #f5a623;
  --fda-danger: #dc3545;
  --fda-live: #dc3545;
  --fda-live-bg: #fef2f2;
  --fda-text: #1e293b;
  --fda-text-middle: #4f5f8f;
  --fda-text-muted: #64748b;
  --fda-text-light: #94a3b8;
  --fda-bg: #ffffff;
  --fda-bg-alt: #f8fafc;
  --fda-border: #e2e8f0;
  --fda-radius: 8px;
  --fda-radius-sm: 4px;
  --fda-radius-lg: 12px;
  --fda-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --fda-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
  --fda-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fda-font-size: 15px;
  --fda-line-height: 1.5;
  --fda-container-max: 1100px;
  --fda-gap: 16px;
  --fda-gap-lg: 24px;
}

/* ── Reset / Container ───────────────────────── */
.fda-container {
  max-width: var(--fda-container-max);
  margin-inline: auto;
  padding-inline: var(--fda-gap);
  font-family: var(--fda-font-sans);
  font-size: var(--fda-font-size);
  line-height: var(--fda-line-height);
  color: var(--fda-text);
}
.fda-container *,
.fda-container *::before,
.fda-container *::after {
  box-sizing: border-box;
}

/* ── Tabs ────────────────────────────────────── */
.fda-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--fda-border);
  margin-bottom: var(--fda-gap-lg);
}

.fda-tab {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fda-text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.fda-tab:hover {
  color: var(--fda-primary);
}
.fda-tab.fda-active {
  color: var(--fda-primary);
  border-bottom-color: var(--fda-primary);
}

.fda-tab-panel {
  display: none;
}
.fda-tab-panel.fda-active {
  display: block;
}

/* ── Badges ──────────────────────────────────── */
.fda-live-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  background: var(--fda-live);
  border-radius: var(--fda-radius-sm);
}
.fda-live-badge.fda-pulse {
  animation: fda-pulse 1.5s infinite;
}

@keyframes fda-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
.fda-season-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fda-primary);
  background: color-mix(in srgb, var(--fda-primary) 10%, transparent);
  border-radius: var(--fda-radius-sm);
}

.fda-status-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fda-text-muted);
  background: var(--fda-bg-alt);
  border-radius: var(--fda-radius-sm);
}

/* ── Team Logo ───────────────────────────────── */
.fda-team-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  vertical-align: middle;
}

/* ── Empty State ─────────────────────────────── */
.fda-empty {
  text-align: center;
  padding: var(--fda-gap-lg) var(--fda-gap);
  color: var(--fda-text-muted);
  font-style: italic;
}

/* ── Breadcrumb ──────────────────────────────── */
.fda-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: var(--fda-gap) 0;
  font-size: 13px;
  color: var(--fda-text-muted);
}
.fda-breadcrumb a {
  color: var(--fda-primary);
  text-decoration: none;
}
.fda-breadcrumb a:hover {
  text-decoration: underline;
}

.fda-breadcrumb-sep {
  color: var(--fda-text-light);
}

/* ── Season Selector ─────────────────────────── */
.fda-season-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.fda-season-label {
  font-size: 13px;
  color: var(--fda-text-muted);
  font-weight: 500;
}

.fda-season-link {
  display: inline-block;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fda-text-muted);
  background: var(--fda-bg-alt);
  border: 1px solid var(--fda-border);
  border-radius: var(--fda-radius-sm);
  text-decoration: none;
  transition: all 0.15s;
}
.fda-season-link:hover {
  color: var(--fda-primary);
  border-color: var(--fda-primary);
}
.fda-season-link.fda-active {
  color: #fff;
  background: var(--fda-primary);
  border-color: var(--fda-primary);
}

/* ── News List ───────────────────────────────── */
.fda-news-list {
  display: flex;
  flex-direction: column;
  gap: var(--fda-gap);
}

.fda-news-item {
  display: flex;
  gap: var(--fda-gap);
  padding: var(--fda-gap);
  background: var(--fda-bg);
  border: 1px solid var(--fda-border);
  border-radius: var(--fda-radius);
  transition: box-shadow 0.2s;
}
.fda-news-item:hover {
  box-shadow: var(--fda-shadow-md);
}

.fda-news-thumb {
  flex-shrink: 0;
  width: 120px;
  border-radius: var(--fda-radius-sm);
  overflow: hidden;
}
.fda-news-thumb img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.fda-news-content {
  flex: 1;
  min-width: 0;
}

.fda-news-title {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.3;
}
.fda-news-title a {
  color: var(--fda-text);
  text-decoration: none;
}
.fda-news-title a:hover {
  color: var(--fda-primary);
}

.fda-news-date {
  display: block;
  font-size: 12px;
  color: var(--fda-text-light);
  margin-bottom: 4px;
}

.fda-news-excerpt {
  margin: 0;
  font-size: 13px;
  color: var(--fda-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Button ──────────────────────────────────── */
.fda-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: var(--fda-radius-sm);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.fda-btn:active {
  transform: scale(0.97);
}

.fda-btn-primary {
  color: #fff;
  background: var(--fda-primary);
}
.fda-btn-primary:hover {
  background: var(--fda-primary-dark);
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 640px) {
  .fda-news-item {
    flex-direction: column;
  }
  .fda-news-thumb {
    width: 100%;
  }
  .fda-news-thumb img {
    height: 160px;
  }
  .fda-tab {
    padding: 8px 15px;
    font-size: 12px;
  }
}

/*# sourceMappingURL=frontend.css.map */
