:root {
  --background: oklch(0.99 0.005 85);
  --foreground: oklch(0.15 0.01 85);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.15 0.01 85);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.15 0.01 85);
  --primary: oklch(0.65 0.15 35);
  --primary-foreground: oklch(0.99 0.005 85);
  --secondary: oklch(0.96 0.01 85);
  --secondary-foreground: oklch(0.15 0.01 85);
  --muted: oklch(0.96 0.01 85);
  --muted-foreground: oklch(0.45 0.01 85);
  --accent: oklch(0.75 0.12 25);
  --accent-foreground: oklch(0.99 0.005 85);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.98 0.01 85);
  --border: oklch(0.92 0.01 85);
  --input: oklch(0.92 0.01 85);
  --ring: oklch(0.65 0.15 35);
  --radius: 0rem;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 16px;
}

.main {
  min-height: 100vh;
}

.hero-bg {
  background-image: url("../../img/pages/news.jpg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 48rem;
  padding: 0 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.125rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: white;
  opacity: 0.9;
  line-height: 1.7;
}

.news-section {
  background: white;
}

.news-grid-section {
  background: white;
}

.category-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 2px solid #e5e7eb;
  background: #fff;
  color: #313131;
  border-radius: 9999px;
  font-size: 0.875rem;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.filter-btn:hover, .filter-btn.active {
  background: #ff6b35;
  color: #fff;
  border-color: #ff6b35;
}

.news-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .news-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news-card:hover {
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.news-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.news-card:hover .news-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.news-content {
  padding: 1.5rem;
}

.news-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.news-date {
  font-size: 0.875rem;
  color: #313131;
  font-weight: 500;
}

.news-category {
  font-size: 0.75rem;
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
}

.news-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: black;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.news-title a {
  color: #000;
}

.news-excerpt {
  font-size: 0.875rem;
  color: #313131;
  line-height: 1.6;
}

.section-cta {
  text-align: right;
  margin-top: 4rem;
}

.cta-button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #ff6b35;
  border: 2px solid #ff6b35;
  background: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background: #ff6b35;
  color: white;
}

.pagination {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination .page-numbers {
  padding: 0.5rem 0.75rem;
  margin: 0 0.25rem;
  border: 1px solid #e5e7eb;
  color: #313131;
  text-decoration: none;
  border-radius: 0.375rem;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.pagination .page-numbers:hover, .pagination .page-numbers.current {
  background: #ff6b35;
  color: #fff;
  border-color: #ff6b35;
}

.footer {
  background: #111827;
  color: white;
  padding: 4rem 0;
}

.footer-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section .footer-logo {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-section .footer-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-section .footer-description .footer-company {
  text-decoration: underline;
}

.footer-section .footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.footer-section .footer-address {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-section .footer-address p {
  margin-bottom: 0.25rem;
}

.footer-section .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section .footer-links li {
  margin-bottom: 0.5rem;
}

.footer-section .footer-links li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer-section .footer-links li a:hover {
  color: white;
}

.footer-section .footer-social .social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer-section .footer-social .social-link:hover {
  color: white;
}

.footer-section .footer-social .social-link .social-icon {
  margin-right: 0.5rem;
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.25rem;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fade-in {
  -webkit-animation: fadeIn 0.6s ease-out;
          animation: fadeIn 0.6s ease-out;
}

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

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

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md\\:block {
    display: block;
  }
  .md\\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .md\\:hidden {
    display: none;
  }
}
/*# sourceMappingURL=news.css.map */