/* Fonts loaded locally for performance */
@import url('../fonts/fonts.css');

/* Fallback to system fonts if local fonts fail */
@font-face {
  font-family: 'Poppins';
  src: local('Poppins');
  font-weight: 400;
}
@font-face {
  font-family: 'Inter';
  src: local('Inter');
  font-weight: 400;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

/* Utility Classes */
.bg-white { background: var(--color-white); }
.bg-warm { background: var(--color-bg-warm); }
.bg-dark { background: var(--color-bg-dark); }
.bg-primary { background: var(--color-primary); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex-center-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.grid-4-cols {
  grid-template-columns: repeat(4, 1fr);
}

/* Location List Styles */
.location-item {
  margin-bottom: 20px;
  padding: 20px;
  background: var(--color-bg-warm);
  border-radius: var(--radius-md);
}

.location-item strong {
  font-size: 1.1rem;
  color: var(--color-text);
}

.location-item .text-muted {
  color: var(--color-text-secondary);
}

.location-item .text-primary {
  color: var(--color-primary);
  font-weight: 600;
}

/* Article Info Box */
.article-info-box {
  margin-top: 16px;
}

.article-info-box--mt20 {
  margin-top: 20px;
}

/* Location List */
.location-list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}