@charset "UTF-8";
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 1rem 3rem;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
  opacity: 0.7;
}
.header__logo-image {
  width: 100px;
}
.header__container-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.header__nav-item {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.header__nav-item:hover {
  color: #ff6b35;
}
.header__cta {
  background: #ff6b35;
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.header__cta:hover {
  background: rgb(255, 69.6336633663, 2);
}
.header__cta-icon {
  width: 16px;
  height: 16px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}
.header__hamburger-line {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.header__hamburger:hover .header__hamburger-line {
  background: #ff6b35;
}
.header__hamburger.active .header__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #ff6b35;
}
.header__hamburger.active .header__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.header__hamburger.active .header__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #ff6b35;
}

@media (max-width: 768px) {
  .header__container-right {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }
  .header__nav.active {
    right: 0;
  }
  .header__nav-item {
    margin: 1rem 0;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  .header__nav-item:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateX(10px);
  }
  .header__cta {
    display: none;
  }
  .header__hamburger {
    display: flex;
  }
  .header::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    pointer-events: none;
  }
  .header.menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.footer {
  background: linear-gradient(135deg, #1f2937 0%, rgb(21.8081395349, 28.8430232558, 38.6918604651) 50%, rgb(36.5151162791, 48.2941860465, 64.7848837209) 100%);
  color: #ffffff;
  padding: 5rem 0 0 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.8) 0%, rgba(30, 58, 138, 0.6) 50%, rgba(220, 38, 38, 0.4) 100%);
}
.footer__container {
  margin: 0 auto;
}
.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding: 3rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__brand .footer__logo {
  margin-bottom: 2rem;
}
.footer__brand .footer__logo-image {
  width: 120px;
  height: auto;
}
.footer__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer__social-link:hover {
  border-color: #ff6b35;
  color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}
.footer__social-link svg {
  width: 18px;
  height: 18px;
}
.footer__section-title {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.footer__link:hover {
  color: #ff6b35;
  transform: translateX(5px);
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.footer__contact-icon {
  color: #ff6b35;
  flex-shrink: 0;
}
.footer__bottom {
  padding: 3rem 3rem;
  background: rgba(0, 0, 0, 0.3);
}
.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}
.footer__legal {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer__legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.footer__legal-link:hover {
  color: #ff6b35;
}
.footer__developer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}
.footer__developer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.footer__developer-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer__brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 4rem 0 0 0;
  }
  .footer__main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer__bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .footer__legal {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .footer__container {
    padding: 0 2rem;
  }
  .footer__social {
    justify-content: center;
  }
  .footer__legal {
    flex-direction: column;
    gap: 1rem;
  }
}
@keyframes skeleton-loading {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.container-flag {
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.flag {
  position: fixed;
  top: -5%;
  right: 1%;
  transform: translateX(-50%);
  width: 32px;
  height: 196px;
  background-color: rgba(255, 208, 0, 0.3137254902);
  box-shadow: 0 2px 5px rgba(31, 41, 55, 0.2);
  z-index: 99;
  transform: rotate(-50deg);
}

.flag:nth-child(2) {
  background-color: rgba(3, 77, 162, 0.3490196078);
  width: 22px;
  height: 168px;
  top: -42px;
  right: -11px;
}

.flag:nth-child(3) {
  background-color: rgba(239, 51, 63, 0.3294117647);
  width: 22px;
  height: 150px;
  top: -3.7%;
  right: -39px;
}

.last-update {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 32px rgba(31, 41, 55, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
  cursor: pointer;
  min-width: 160px;
}
.last-update:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(31, 41, 55, 0.15);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 107, 53, 0.3);
}
.last-update__icon {
  font-size: 1.1rem;
  opacity: 0.7;
  animation: pulse 2s infinite;
}
.last-update__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.last-update__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(31, 41, 55, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}
.last-update__date {
  font-size: 0.8rem;
  font-weight: 500;
  color: #ff6b35;
  line-height: 1;
}
.last-update--loading .last-update__date {
  color: rgba(31, 41, 55, 0.5);
}
.last-update--loading .last-update__icon {
  animation: spin 1s linear infinite;
}
.last-update--error {
  border-color: rgba(255, 0, 0, 0.3);
}
.last-update--error .last-update__date {
  color: red;
}
.last-update--error .last-update__icon {
  animation: none;
}
@media (max-width: 768px) {
  .last-update {
    bottom: 2rem;
    right: 2rem;
    padding: 0.5rem 1rem;
    min-width: 140px;
  }
  .last-update__icon {
    font-size: 1rem;
  }
  .last-update__label {
    font-size: 0.65rem;
  }
  .last-update__date {
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .last-update {
    bottom: 1rem;
    right: 1rem;
    padding: 6px 1rem;
    min-width: 120px;
  }
  .last-update__content {
    gap: 1px;
  }
  .last-update__label {
    font-size: 0.6rem;
  }
  .last-update__date {
    font-size: 0.7rem;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden;
  width: 100vw;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero .hero__background-overlay2 {
  height: 120%;
  width: 220px;
  background-color: rgba(255, 208, 0, 0.8);
  position: absolute;
  z-index: 3;
  pointer-events: none;
  transform: skewY(-30deg) rotate(48deg);
}
.hero .hero__background-overlay2:nth-child(1) {
  left: 76.4%;
  width: 284px;
}
@media (max-width: 1440px) {
  .hero .hero__background-overlay2:nth-child(1) {
    width: 240px;
    left: 73.4%;
  }
}
.hero .hero__background-overlay2:nth-child(2) {
  left: 90%;
  background-color: rgba(3, 77, 162, 0.7803921569);
}
@media (max-width: 1440px) {
  .hero .hero__background-overlay2:nth-child(2) {
    left: 89.5%;
  }
}
@media (max-width: 1200px) {
  .hero .hero__background-overlay2:nth-child(2) {
    left: 91.5%;
  }
}
@media (max-width: 1024px) {
  .hero .hero__background-overlay2:nth-child(2) {
    left: 101.9%;
  }
}
.hero .hero__background-overlay2:nth-child(3) {
  left: 100.3%;
  background-color: rgba(239, 51, 63, 0.8);
}
@media (max-width: 1440px) {
  .hero .hero__background-overlay2:nth-child(3) {
    left: 103.9%;
  }
}
@media (max-width: 1200px) {
  .hero .hero__background-overlay2:nth-child(3) {
    left: 107.9%;
  }
}
@media (max-width: 1024px) {
  .hero .hero__background-overlay2:nth-child(3) {
    left: 126.9%;
  }
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero__background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.hero__background-image.active {
  opacity: 1;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2862745098);
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-left: 100px;
  padding: 0 3rem;
  color: #ffffff;
}
.hero__content-subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  opacity: 0.9;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero__content-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 2rem;
  line-height: 1.2;
  max-width: 800px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero__content-description {
  font-size: 1.25rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 3rem;
  max-width: 1200px;
  opacity: 0.9;
}
.hero__buttons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero__buttons-primary {
  background: #ff6b35;
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.hero__buttons-primary:hover {
  background: rgb(255, 69.6336633663, 2);
  transform: translateY(-2px);
}
.hero__buttons-primary-icon {
  width: 16px;
  height: 16px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}
@media (max-width: 590px) {
  .hero__buttons-primary {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}
.hero__buttons-secondary {
  background: transparent;
  color: #ffffff;
  padding: 1rem 2rem;
  border: 2px solid #ffffff;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.hero__buttons-secondary:hover {
  background: #ffffff;
  color: #1f2937;
  transform: translateY(-2px);
}
.hero__buttons-secondary-icon {
  width: 16px;
  height: 16px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}
@media (max-width: 590px) {
  .hero__buttons-secondary {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .hero__content {
    margin-left: 20px;
  }
  .hero__content-title {
    font-size: 2rem;
  }
  .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}
.news {
  padding: 4rem 0;
  background: #ffffff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.news__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}
.news__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 2rem;
}
.news__header-left {
  width: 80%;
  margin: 0 auto;
}
.news__subtitle {
  color: #ff6b35;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.news__title {
  color: #1f2937;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}
.news__view-all {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.news__view-all:hover {
  color: rgb(255, 69.6336633663, 2);
  transform: translateX(5px);
}
.news__view-all::after {
  content: "→";
  font-size: 1.2em;
  transition: transform 0.3s ease;
}
.news__view-all:hover::after {
  transform: translateX(3px);
}
.news__carousel {
  position: relative;
  margin-bottom: 3rem;
  padding: 0 4rem;
}
.news__carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.news__carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  padding: 1rem 0;
  width: fit-content;
  gap: 0;
}
.news__article {
  flex: 0 0 calc(33.333vw - 3rem);
  min-width: 300px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  margin-right: 3rem;
}
.news__article:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: rgba(255, 107, 53, 0.05);
}
.news__article-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.news__article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news__article:hover .news__article-image img {
  transform: scale(1.05);
}
.news__article-content {
  padding: 2rem;
}
.news__article-date {
  color: #ff6b35;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}
.news__article-title {
  color: #1f2937;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.3;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__article-excerpt {
  color: rgba(31, 41, 55, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__article-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.news__article-link:hover {
  color: rgb(255, 69.6336633663, 2);
  transform: translateX(3px);
}
.news__article-link::after {
  content: "→";
  font-size: 1.1em;
  transition: transform 0.3s ease;
}
.news__article-link:hover::after {
  transform: translateX(2px);
}
.news__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(31, 41, 55, 0.2);
  color: #1f2937;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news__carousel-btn:hover {
  background: #ff6b35;
  border-color: #ff6b35;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}
.news__carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: translateY(-50%) scale(0.9);
}
.news__carousel-btn--prev {
  left: 0;
}
.news__carousel-btn--next {
  right: 0;
}
.news__carousel-btn-icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transition: all 0.3s ease;
}
.news__carousel-btn--prev .news__carousel-btn-icon {
  transform: rotate(135deg);
}
.news__carousel-btn--next .news__carousel-btn-icon {
  transform: rotate(-45deg);
}
.news__indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.news__indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(31, 41, 55, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.news__indicator.active {
  background: #ff6b35;
  transform: scale(1.2);
}
.news__indicator:hover {
  background: rgba(255, 107, 53, 0.7);
}
.news__article--skeleton {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}
.news__article--skeleton .skeleton-image,
.news__article--skeleton .skeleton-date,
.news__article--skeleton .skeleton-title,
.news__article--skeleton .skeleton-excerpt,
.news__article--skeleton .skeleton-link {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}
.news__article--skeleton .skeleton-image {
  width: 100%;
  height: 300px;
  border-radius: 0;
}
.news__article--skeleton .skeleton-date {
  width: 40%;
  height: 12px;
  margin-bottom: 0.5rem;
}
.news__article--skeleton .skeleton-title {
  width: 80%;
  height: 18px;
  margin-bottom: 1rem;
}
.news__article--skeleton .skeleton-excerpt {
  width: 100%;
  height: 14px;
  margin-bottom: 0.5rem;
}
.news__article--skeleton .skeleton-excerpt:nth-of-type(2) {
  width: 60%;
  margin-bottom: 2rem;
}
.news__article--skeleton .skeleton-link {
  width: 30%;
  height: 14px;
}
.news__loading-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  color: #1f2937;
  flex: 0 0 300px;
}
.news__loading-indicator .loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 107, 53, 0.2);
  border-left: 4px solid #ff6b35;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 2rem;
}
.news__loading-indicator span {
  font-size: 0.9rem;
  color: rgba(31, 41, 55, 0.7);
}
.news__empty-state, .news__error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem;
  text-align: center;
  color: #1f2937;
  min-height: 400px;
  width: 100%;
}
.news__empty-icon, .news__error-icon {
  font-size: 4rem;
  margin-bottom: 3rem;
  opacity: 0.5;
}
.news__empty-title, .news__error-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 2rem;
}
.news__empty-description, .news__error-description {
  font-size: 1rem;
  color: rgba(31, 41, 55, 0.7);
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 3rem;
}
.news__retry-btn {
  background: #ff6b35;
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news__retry-btn:hover {
  background: rgb(255, 69.6336633663, 2);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .news__article {
    flex: 0 0 calc(50vw - 3rem);
    margin-right: 3rem;
  }
}
@media (max-width: 768px) {
  .news__article {
    flex: 0 0 calc(100vw - 8rem);
    min-width: 300px;
    margin-right: 2rem;
  }
}
@media (max-width: 480px) {
  .hero__content {
    padding: 0;
  }
  .hero__content-title {
    font-size: 1.5rem;
  }
  .hero__content-description {
    font-size: 1rem;
  }
  .hero__content-button {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  .news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .news__title {
    font-size: 2rem;
  }
  .news__view-all {
    align-self: flex-end;
  }
  .news__carousel-btn {
    width: 40px;
    height: 40px;
  }
  .news__carousel-btn--prev {
    left: -20px;
  }
  .news__carousel-btn--next {
    right: -20px;
  }
  .news__article {
    flex: 0 0 calc(100vw - 8rem);
    min-width: 280px;
    margin-right: 2rem;
  }
}
.modules {
  background: #ffffff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.modules__container {
  max-width: 100%;
  margin: 0 auto;
}
.modules__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
}
.modules__module {
  position: relative;
  height: 400px;
  overflow-y: hidden;
  overflow-x: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modules__module:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}
.modules__module:hover .modules__module-background img {
  transform: scale(1.1);
}
.modules__module:hover .modules__module-overlay {
  background: rgba(240, 167, 65, 0.5058823529);
}
.modules__module-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.modules__module-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.modules__module-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1764705882);
  z-index: 2;
  transition: background 0.3s ease;
}
.modules__module-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  color: #ffffff;
}
.modules__module-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  opacity: 0.9;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.modules__module-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.modules__module-button {
  background: #ff6b35;
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  align-self: flex-start;
  font-size: 0.9rem;
}
.modules__module-button:hover {
  background: rgb(255, 69.6336633663, 2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}
.modules__module-button:hover::after {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .modules__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .modules__module {
    height: 350px;
  }
  .modules__module-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .modules__grid {
    grid-template-columns: 1fr;
  }
  .modules__module {
    height: 300px;
  }
  .modules__module-content {
    padding: 2rem;
  }
  .modules__module-title {
    font-size: 1.1rem;
  }
  .modules__module-button {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}
.about {
  padding: 5rem 0;
  background: #ffffff;
}
.about__container {
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  width: 90%;
}
.about__content {
  padding-right: 4rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about__subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff6b35;
  margin-bottom: 1rem;
}
.about__title {
  font-size: 2rem;
  font-weight: bold;
  color: #ff6b35;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.about__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 4rem;
}
.about__button {
  background: #ff6b35;
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  font-size: 1rem;
  width: max-content;
}
.about__button:hover {
  background: rgb(255, 69.6336633663, 2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}
.about__button-icon {
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
}
.about__button:hover .about__button-icon {
  transform: translateX(3px);
}
.about__features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.about__feature {
  display: flex;
  align-items: start;
  text-align: start;
  border-radius: 12px;
  transition: all 0.3s ease;
  gap: 2rem;
  text-decoration: none;
  color: inherit;
  padding: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
}
.about__feature:hover {
  border-color: #ff6b35;
  background-color: rgba(255, 107, 53, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}
.about__feature:hover .about__feature-title {
  color: #ff6b35;
}
.about__feature-icon {
  width: 64px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.about__feature-icon svg {
  width: 32px;
  height: 32px;
}
.about__feature-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #ff6b35;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about__feature-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #000000;
}

@media (max-width: 1024px) {
  .about__container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about__content {
    padding-right: 0;
    text-align: center;
  }
  .about__title {
    font-size: 2rem;
  }
  .about__features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 4rem 0 0 0;
  }
  .about__container {
    padding: 0;
  }
  .about__title {
    font-size: 1.75rem;
  }
  .about__description {
    font-size: 1rem;
  }
  .about__features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about__feature {
    padding: 2rem;
  }
  .about__feature-icon {
    width: 56px;
    height: 56px;
  }
  .about__feature-icon svg {
    width: 28px;
    height: 28px;
  }
  .about__feature-title {
    font-size: 1rem;
  }
  .about__feature-description {
    font-size: 0.9rem;
  }
  .about__button {
    font-size: 0.9rem;
    padding: 1rem 2rem;
  }
}
@media (max-width: 768px) and (max-width: 1024px) {
  .about__button {
    display: none;
  }
}
.membership-volunteer__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  max-height: 600px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .membership-volunteer__block {
    max-height: unset;
    overflow: visible;
    max-width: 100%;
    overflow-x: hidden;
  }
}
.membership-volunteer__block--membership {
  position: relative;
}
.membership-volunteer__block--membership::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 15%;
  height: 100%;
  background: #ff6b35;
  opacity: 0.7;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
  transform: skew(-10deg);
  z-index: 1;
}
@media (max-width: 1024px) {
  .membership-volunteer__block--membership::after {
    display: none;
  }
}
.membership-volunteer__block--membership .membership-volunteer__image {
  order: 1;
}
.membership-volunteer__block--membership .membership-volunteer__content {
  order: 2;
  position: relative;
  z-index: 2;
}
.membership-volunteer__block--volunteer {
  position: relative;
}
.membership-volunteer__block--volunteer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 35%;
  width: 15%;
  height: 100%;
  background: #ff6b35;
  opacity: 0.7;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
  transform: skew(10deg);
  z-index: 1;
}
@media (max-width: 1024px) {
  .membership-volunteer__block--volunteer::after {
    display: none;
  }
}
.membership-volunteer__block--volunteer .membership-volunteer__image {
  order: 2;
}
.membership-volunteer__block--volunteer .membership-volunteer__image::after {
  background: linear-gradient(-45deg, #ff6b35 0%, transparent 50%);
}
.membership-volunteer__block--volunteer .membership-volunteer__content {
  order: 1;
  clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 0% 100%);
  z-index: 1;
  overflow: visible;
  position: relative;
}
@media (max-width: 1024px) {
  .membership-volunteer__block--volunteer .membership-volunteer__content {
    clip-path: none;
  }
}
.membership-volunteer__image {
  position: relative;
  overflow: visible;
}
.membership-volunteer__image img {
  width: 130%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  transform: translateX(-10%);
}
.membership-volunteer__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #ff6b35 0%, transparent 50%);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}
.membership-volunteer__content {
  background: #ff6b35;
  padding: 5rem;
  padding-left: 200px;
  display: flex;
  flex-direction: column;
  padding-top: 160px;
  color: #ffffff;
  position: relative;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.membership-volunteer__subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.membership-volunteer__title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.membership-volunteer__description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 4rem;
  opacity: 0.95;
}
.membership-volunteer__button {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.membership-volunteer__button:hover {
  opacity: 0.8;
  transform: translateX(5px);
}
.membership-volunteer__button:hover::after {
  transform: translateX(3px);
}

.membership-volunteer__image:nth-child(1) img {
  transform: translateX(-10%) scaleX(-1) !important;
}

.archery-types {
  background: #ffffff;
  padding: 5rem 0;
}
.archery-types__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.archery-types__image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.archery-types__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.archery-types__image:hover img {
  transform: scale(1.05);
}
.archery-types__content {
  padding-left: 4rem;
}
.archery-types__subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff6b35;
  margin-bottom: 1rem;
}
.archery-types__title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff6b35;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.archery-types__description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 4rem;
}
.archery-types__button {
  background: #ff6b35;
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.archery-types__button:hover {
  background: rgb(255, 69.6336633663, 2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}
.archery-types__button::after {
  content: "→";
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.archery-types__button:hover::after {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .news__container {
    padding: 0;
  }
  .news__carousel {
    padding: 0 20px;
  }
  .news__carousel-btn--prev {
    left: 20px;
  }
  .news__carousel-btn--next {
    right: 20px;
  }
  .membership-volunteer__block {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .membership-volunteer__block--membership .membership-volunteer__image, .membership-volunteer__block--volunteer .membership-volunteer__image {
    order: 1;
  }
  .membership-volunteer__block--membership .membership-volunteer__content, .membership-volunteer__block--volunteer .membership-volunteer__content {
    order: 2;
  }
  .membership-volunteer__content {
    padding: 4rem;
    clip-path: none;
  }
  .membership-volunteer__title {
    font-size: 2rem;
  }
  .membership-volunteer__description {
    font-size: 1rem;
  }
  .archery-types__container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .archery-types__content {
    padding-left: 0;
    text-align: center;
  }
  .archery-types__title {
    font-size: 2rem;
  }
  .archery-types__description {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .membership-volunteer__content {
    padding: 3rem;
    clip-path: none;
  }
  .membership-volunteer__title {
    font-size: 1.75rem;
  }
  .membership-volunteer__description {
    font-size: 0.95rem;
  }
  .membership-volunteer__button {
    font-size: 0.9rem;
  }
  .archery-types {
    padding: 4rem 0;
  }
  .archery-types__container {
    padding: 0 2rem;
  }
  .archery-types__title {
    font-size: 1.75rem;
  }
  .archery-types__description {
    font-size: 0.95rem;
  }
  .archery-types__button {
    font-size: 0.9rem;
    padding: 1rem 2rem;
  }
}
.partners {
  background: #ffffff;
  padding: 5rem 0;
  padding-bottom: 0;
  color: #1f2937;
}
.partners__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}
.partners__header {
  text-align: center;
  margin-bottom: 4rem;
}
.partners__subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff6b35;
  margin-bottom: 0.5rem;
}
.partners__title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  margin: 0;
}
.partners__logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 4rem;
}
.partners__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 150px;
  max-width: 200px;
  padding: 1rem;
  transition: transform 0.3s ease;
}
.partners__logo:hover {
  transform: translateY(-5px);
}
.partners__logo-image {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.partners__logo-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}
.partners__logo-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #ff6b35;
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}
.partners__logo:hover .partners__logo-image img {
  filter: grayscale(0%);
}
.partners__logo-image img[src*=error] {
  display: none;
}
.partners__logo-image img[src*=error] + .partners__logo-image::before {
  opacity: 0.3;
}
.partners__logo-text {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1f2937;
  line-height: 1.2;
}
.partners__logo-text span {
  display: block;
}
.partners__logo-text-only {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1f2937;
  line-height: 1.2;
}
.partners__logo-text-only span:first-child {
  font-family: serif;
  font-size: 0.75rem;
  font-weight: normal;
  text-transform: none;
}
.partners__logo-text-only span:last-child {
  font-weight: bold;
  font-size: 1rem;
}
.partners__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.8) 0%, rgba(30, 58, 138, 0.6) 50%, rgba(255, 0, 0, 0.4) 100%);
  padding: 2rem 3rem;
  margin-top: 4rem;
}
.partners__footer-left span {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.125rem;
}
.partners__footer-right {
  display: flex;
  gap: 2rem;
}
.partners__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}
.partners__social-link:hover {
  background: #ffffff;
  color: #ff6b35;
  transform: scale(1.1);
}
.partners__social-link svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .partners {
    padding: 3rem 0 0 0;
  }
  .partners__title {
    font-size: 2rem;
  }
  .partners__logos {
    flex-direction: column;
    gap: 2rem;
  }
  .partners__logo {
    min-width: auto;
    max-width: none;
    width: 100%;
    justify-content: center;
  }
  .partners__footer {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}
.news-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.news-modal.open {
  display: flex;
}
.news-modal.open .news-modal__overlay {
  animation: modal-fade 0.2s ease;
}
.news-modal.open .news-modal__dialog {
  animation: modal-pop 0.25s ease;
}
.news-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}
.news-modal__dialog {
  padding: 50px;
  position: relative;
  width: min(900px, 92vw);
  max-height: 90vh;
  background: #fff;
  color: #111;
  border-radius: 12px;
  overflow: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.news-modal__dialog::before {
  content: "";
  position: sticky;
  top: 0;
  display: block;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.9), rgba(30, 58, 138, 0.9), rgba(255, 0, 0, 0.9));
}
.news-modal__dialog::-webkit-scrollbar {
  width: 10px;
}
.news-modal__dialog::-webkit-scrollbar-track {
  background: transparent;
}
.news-modal__dialog::-webkit-scrollbar-thumb {
  background: rgba(31, 41, 55, 0.15);
  border-radius: 10px;
}
.news-modal__dialog::-webkit-scrollbar-thumb:hover {
  background: rgba(31, 41, 55, 0.25);
}
.news-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  font-size: 22px;
  line-height: 1;
  background: #ffffff;
  border: 1px solid rgba(31, 41, 55, 0.12);
  color: #1f2937;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.news-modal__close:hover {
  background: #ff6b35;
  color: #fff;
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
}
.news-modal__header {
  position: sticky;
  top: 0;
  padding: 16px 24px;
  background: #ffffff;
  border-bottom: 1px solid rgba(31, 41, 55, 0.06);
  display: flex;
  gap: 12px;
  align-items: baseline;
  flex-wrap: wrap;
  z-index: 1;
}
.news-modal__title {
  flex: 1;
  font-weight: 800;
  color: #1f2937;
  font-size: 1.6rem;
  letter-spacing: 0.2px;
}
.news-modal__date {
  color: #ff6b35;
  font-size: 0.85rem;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.news-modal__image {
  width: 100%;
  max-height: 380px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.news-modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-modal__content {
  padding: 16px 0px 24px 0px;
  color: #222;
  font-size: 1rem;
  line-height: 1.65;
}
.news-modal__content p {
  margin: 0 0 1rem 0;
}
.news-modal__content h1, .news-modal__content h2, .news-modal__content h3 {
  color: #1f2937;
  margin: 0 0 0.75rem 0;
  line-height: 1.25;
}
.news-modal__content h2 {
  font-size: 1.25rem;
}
.news-modal__content h3 {
  font-size: 1.1rem;
}
.news-modal__content a {
  color: #ff6b35;
  text-underline-offset: 3px;
}
.news-modal__content ul, .news-modal__content ol {
  padding-left: 1.2rem;
  margin: 0 0 1rem 0;
}
.news-modal__content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
  border-radius: 8px;
}

@media (max-width: 600px) {
  .news-modal__dialog {
    width: 96vw;
    max-height: 92vh;
  }
  .news-modal__header {
    padding: 12px 16px;
  }
  .news-modal__title {
    font-size: 1.25rem;
  }
  .news-modal__content {
    padding: 12px 16px 16px 16px;
  }
  .news-modal__close {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
}
@keyframes modal-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-pop {
  from {
    transform: translateY(10px) scale(0.98);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

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