@charset "UTF-8";

@font-face {
  font-family: "Anybody";
  src: url("../font/Anybody-Regular.woff2") format("woff2"), url("../font/Anybody-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Anybody";
  src: url("../font/Anybody-SemiBold.woff2") format("woff2"), url("../font/Anybody-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Anybody";
  src: url("../font/Anybody-ExtraBold.woff2") format("woff2"), url("../font/Anybody-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
:root {
  font-family: "Anybody", sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --primary: #006B3C;
  --accent: #FEDD00;
  --text: #e8f5e9;
  --bg: #0D1B2A;
  --second: #00A859;
  --white: #fff;
  --black: #000;
  --radius: 18px;
  --gold: #FFD700;
  --green-light: #1DD1A1;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg) 0%, #1B263B 50%, var(--bg) 100%);
  background-attachment: fixed;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.12;
  overflow-x: hidden;
}

main {
  min-height: 90vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 800;
  line-height: 1.15;
}

h1 {
  font-size: 44px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 26px;
}

section {
  position: relative;
  padding: 45px 0;
}

.container {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: 0 20px;
}

.img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}

.link {
  color: inherit;
  text-decoration: none;
}

.list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.title_white {
  color: var(--white);
}

.title_center {
  text-align: center;
  position: relative;
}
.title_center::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}

p {
  margin: 0;
}

.descr {
  margin: 0;
  margin-top: 15px;
  font-weight: 600;
}

.descr_white {
  color: var(--white);
}

.descr_center {
  text-align: center;
}

.btn {
  display: inline-block;
  margin: 0;
  padding: 14px 45px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s background, 0.2s border-color, 0.2s color, 0.2s transform;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(254, 221, 0, 0.3);
}
.btn:hover {
  background: linear-gradient(135deg, var(--second), var(--green-light));
  border-color: var(--second);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 168, 89, 0.4);
}
.btn_outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: inherit;
}
.btn_outline:hover {
  border-color: var(--second);
  background: transparent;
  color: var(--white);
}

.phone {
  display: none;
  flex-shrink: 0;
  position: relative;
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 16px 5px;
  border: none;
  background: transparent;
  transition: 0.4s ease rotate;
  cursor: pointer;
}
.phone__stick {
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  translate: 0 -50%;
  width: calc(100% - 5px);
  height: 3px;
  border-radius: 50px;
  background: var(--white);
  transition: 0.4s ease left, 0.4s ease width, 0.4s ease translate, 0.4s ease rotate, 0.4s ease opacity;
}
.phone__stick:first-child {
  translate: 0 calc(-50% - 10px);
}
.phone__stick:last-child {
  translate: 0 calc(-50% + 10px);
}
.phone_active {
  rotate: 45deg;
}
.phone_active .phone__stick:first-child {
  opacity: 0;
}
.phone_active .phone__stick:last-child {
  translate: 0 -50%;
  rotate: -90deg;
}

.logo {
  display: block;
  width: 300px;
  max-width: 200px;
  height: auto;
}
.logo img {
  width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

strong {
  color: var(--accent);
  text-shadow: 0 1px 3px rgba(254, 221, 0, 0.3);
}

.privacy,
.terms,
.disclaimer {
  font-size: 24px;
}
.privacy__content,
.terms__content,
.disclaimer__content {
  margin-top: 30px;
}
.privacy__par,
.terms__par,
.disclaimer__par {
  margin-top: 15px;
}

.menu {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.menu__item {
  border-bottom: 2px solid transparent;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  transition: 0.3s color, 0.25s border-color;
}
.menu__item_active, .menu__item:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.header {
  position: relative;
  padding: 10px 0;
  background: linear-gradient(135deg, var(--primary), rgba(0, 107, 60, 0.95));
  color: var(--white);
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid var(--accent);
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__actions .btn {
  padding: 8px 22px;
}
.header__auth {
  display: contents;
}

.footer {
  position: relative;
  padding: 30px 0;
  background: linear-gradient(135deg, var(--primary), rgba(0, 107, 60, 0.95));
  color: var(--white);
  overflow: hidden;
  border-top: 2px solid var(--accent);
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer__title {
  text-transform: uppercase;
  font-size: 22px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}
.footer__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
.footer__copyright {
  margin: 0 auto;
  margin-top: 30px;
  width: min(100%, 1100px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  text-align: center;
}
.footer__special {
  position: relative;
  margin-top: 30px;
  min-height: 0;
  height: 0;
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
  display: flex;
  justify-content: center;
}
.footer__social {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.footer__social-item {
  width: 42px;
  height: 42px;
  padding: 10px;
  background: var(--second);
  border-radius: 100%;
  transition: 0.3s background;
}
.footer__social-item:hover {
  background: var(--accent);
}
.footer__social-link {
  display: block;
  width: 100%;
  height: 100%;
}
.footer__social-link svg {
  width: 100%;
  height: 100%;
  fill: var(--white);
}
.footer__social-item:hover .footer__social-link svg {
  fill: var(--primary);
}
.footer hr {
  margin: 20px 0;
  opacity: 0.2;
}
.footer__paymants {
  text-align: center;
}
.footer__paymants-list {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.footer__paymants-item {
  width: 130px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius);
  background: var(--second);
  overflow: hidden;
}
.footer__paymants-icon {
  display: block;
  height: 58px;
}
.footer__paymants svg {
  width: 100%;
  height: 100%;
  fill: var(--white);
  transition: 0.2s ease fill;
}
.footer__paymants-item:hover .footer__paymants-icon svg {
  fill: var(--accent);
}

.specialPromo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: min(100%, 1420px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 25px 10px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--gold));
  text-align: center;
  color: var(--primary);
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(254, 221, 0, 0.4);
  transition: 0.3s ease;
  transition-property: width, box-shadow, transform;
  z-index: 1000;
  box-sizing: border-box;
}
.specialPromo:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 6px 25px rgba(254, 221, 0, 0.5);
}
.specialPromo_sticky {
  position: fixed !important;
  bottom: 0 !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  width: 100% !important;
  max-width: min(100vw, 1420px) !important;
  margin: 0 !important;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.15);
}
.specialPromo__icon {
  flex-shrink: 0;
  width: 26px;
  aspect-ratio: 1/1;
}
.specialPromo__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--primary);
}

.hero {
  padding: 40px 0;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, rgba(0, 107, 60, 0.3), rgba(0, 168, 89, 0.2));
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(254, 221, 0, 0.1), transparent 70%);
  pointer-events: none;
}
.hero__title {
  font-size: clamp(1.5rem, 0.9203rem + 2.8986vw, 4rem);
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}
.hero__descr,
.hero .btn {
  font-size: clamp(1.125rem, 0.9801rem + 0.7246vw, 1.75rem);
}
.hero__images {
  margin-top: 20px;
  width: 100%;
  aspect-ratio: 3/1;
  min-height: 350px;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.textSection__wrapper {
  padding: 20px;
  text-align: center;
}
.textSection .title {
  margin: 10px 0;
  position: relative;
}
.textSection h2.title {
  font-size: 26px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.textSection .descr {
  font-weight: 400;
}
.textSection__list {
  margin-top: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}
.textSection__item {
  width: clamp(220px, 25% - 20px, 300px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border: 2px solid var(--second);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 168, 89, 0.2);
  text-align: center;
  background: rgba(0, 107, 60, 0.1);
  transition: 0.3s transform, 0.3s box-shadow;
  overflow: hidden;
}
.textSection__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 168, 89, 0.4);
  border-color: var(--accent);
}
.textSection__item_large {
  width: clamp(240px, 33.33% - 20px, 450px);
}
.textSection__item-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.textSection__icon {
  display: block;
  margin-bottom: 15px;
  font-size: 38px;
  line-height: 1;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  aspect-ratio: 16/9;
}
.textSection__img {
  display: block;
  margin: 10px auto;
  width: min(100%, 950px);
  aspect-ratio: 3/1;
  min-height: 300px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 2px solid var(--second);
  box-shadow: 0 4px 20px rgba(0, 168, 89, 0.3);
  transition: 0.3s transform, 0.3s box-shadow;
}
.textSection__img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 25px rgba(0, 168, 89, 0.5);
}
.textSection__img_special {
  width: min(100%, 1000px);
  aspect-ratio: auto;
}
.textSection__name {
  font-size: 22px;
  color: var(--accent);
  font-weight: 800;
}
.textSection__instructions {
  margin-top: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}
.textSection__instruction {
  width: clamp(240px, 33.33% - 20px, 450px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--second), var(--green-light));
  color: var(--white);
  font-size: 22px;
  box-shadow: 0 2px 10px rgba(0, 168, 89, 0.3);
}
.textSection__instruction .textSection__icon {
  margin-bottom: 0;
}

.blogs__list {
  width: min(100%, 900px);
  margin: 0 auto;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blogSection {
  background: linear-gradient(135deg, rgba(0, 107, 60, 0.1), rgba(0, 168, 89, 0.05));
  padding: 60px 0;
}
.blogSection__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.blogCard {
  background: rgba(0, 107, 60, 0.15);
  border: 2px solid var(--second);
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.3s transform, 0.3s box-shadow, 0.3s border-color;
  box-shadow: 0 2px 10px rgba(0, 168, 89, 0.2);
}
.blogCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 168, 89, 0.4);
  border-color: var(--accent);
}
.blogCard__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blogCard__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--primary);
}
.blogCard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s transform;
}
.blogCard:hover .blogCard__img {
  transform: scale(1.1);
}
.blogCard__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 107, 60, 0.8), rgba(0, 168, 89, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s opacity;
}
.blogCard:hover .blogCard__overlay {
  opacity: 1;
}
.blogCard__readmore {
  color: var(--accent);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blogCard__content {
  padding: 20px;
}
.blogCard__date {
  display: block;
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blogCard__title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 12px 0;
  color: var(--accent);
  line-height: 1.3;
  transition: 0.3s color;
}
.blogCard:hover .blogCard__title {
  color: var(--gold);
}
.blogCard__descr {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.blog__picture {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius);
}
.blog__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.blog__title, .blog__descr {
  position: relative;
  z-index: 1;
}
.blog__url {
  padding: 8px 30px;
}
.blog__url:before {
  content: "";
  position: absolute;
  inset: 0;
}

.blogDetail__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
.blogDetail__picture {
  width: min(100%, 1000px);
  aspect-ratio: 3/1;
  min-height: 200px;
  overflow: hidden;
  border-radius: var(--radius);
}
.blogDetail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blogDetail__content {
  line-height: 0.9;
}

.advents {
  background: linear-gradient(135deg, var(--primary), var(--second));
}
.advents__list {
  margin-top: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}
.advents__item {
  width: clamp(220px, 25% - 20px, 300px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(0, 107, 60, 0.2);
  border: 1px solid rgba(0, 168, 89, 0.3);
  transition: 0.3s transform, 0.3s box-shadow, 0.3s border-color;
}
.advents__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 168, 89, 0.4);
  border-color: var(--accent);
  background: rgba(0, 168, 89, 0.3);
}
.advents__icon {
  width: 82px;
  aspect-ratio: 1/1;
}
.advents__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.advents__name {
  font-size: 22px;
  color: var(--accent);
  font-weight: 800;
}

.faq__list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accord {
  cursor: pointer;
  padding: 12px 16px;
  border: 2px solid var(--second);
  border-radius: var(--radius);
  transition: 0.3s border-color, 0.3s background, 0.3s transform;
  background: rgba(0, 107, 60, 0.1);
}
.accord:hover:not(.accord_active) {
  border-color: var(--accent);
  background: rgba(0, 168, 89, 0.15);
  transform: translateX(5px);
}
.accord__header {
  gap: 10px;
  color: var(--text);
  font-weight: 500;
  transition: 0.25s color;
}
.accord:hover:not(.accord_active) .accord__header {
  color: var(--accent);
}
.accord__header, .accord__icon {
  display: flex;
  align-items: center;
}
.accord__icon {
  width: 20px;
  height: 20px;
  transition: rotate 0.3s ease;
}
.accord__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--text);
  transition: 0.25s fill;
}
.accord:hover:not(.accord_active) .accord__icon svg {
  fill: var(--accent);
}
.accord__wrapper {
  height: 0;
  overflow: hidden;
  transition: height 0.3s;
}
.accord__content {
  padding: 16px 28px;
}
.accord_active {
  border-color: var(--accent);
  background: rgba(254, 221, 0, 0.1);
}
.accord_active .accord__header {
  color: var(--accent);
}
.accord_active .accord__icon {
  rotate: 180deg;
}
.accord_active .accord__icon svg {
  fill: var(--accent);
}
.accord_active .accord__wrapper, .accord_close .accord__wrapper {
  height: auto;
}

@keyframes animTranslate {
  100% {
    translate: 0;
    opacity: 1;
    transform: 0;
  }
}
.anim {
  opacity: 0;
  animation-duration: var(--t, 0.3s);
  animation-delay: var(--d, 0s);
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.anim_right {
  translate: -5%;
}
.anim_left {
  translate: 5%;
}
.anim_top {
  translate: 0 10%;
}
.anim_bottom {
  translate: 0 -10%;
}
.anim_show {
  animation-name: animTranslate;
}

@media (max-width: 1440px) {
  .phone {
    order: 1;
    display: block;
  }
  .logo {
    max-width: 180px;
  }
  .logo img {
    max-height: 55px;
  }
  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    width: min(100%, 320px);
    height: var(--vh);
    background: var(--primary);
    translate: 10%;
    opacity: 0;
    transition: 0.4s ease translate, 0.3s ease opacity;
    z-index: 9998;
  }
  .header__nav_show {
    display: block;
  }
  .header__nav_active {
    display: block;
    translate: 0;
    opacity: 1;
  }
  .menu {
    flex-direction: column;
    justify-content: flex-end;
    text-align: right;
  }
  .footer__wrapper {
    flex-direction: column;
  }
  .footer__nav {
    text-align: center;
  }
  .footer__list {
    justify-content: center;
  }
  .footer__list {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .logo {
    max-width: 160px;
  }
  .logo img {
    max-height: 50px;
  }
  .blog {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
  }
  .blog__picture {
    width: min(100%, 340px);
    margin: 0 auto;
  }
  .blog__wrapper {
    display: contents;
  }
  .blog__date {
    order: -1;
  }
  .blogSection__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blogCard__content {
    padding: 15px;
  }
  .blogCard__title {
    font-size: 20px;
  }
  .blogCard__descr {
    font-size: 15px;
  }
}
@media (max-width: 525px) {
  h1 {
    font-size: 36px;
  }
  .logo {
    max-width: 150px;
  }
  .logo img {
    max-height: 45px;
  }
  .header__auth {
    display: none;
  }
  .privacy,
  .terms,
  .disclaimer {
    font-size: 18px;
  }
  .privacy h2,
  .terms h2,
  .disclaimer h2 {
    font-size: 20px;
  }
}

/* Article Card Styles */
.article-card {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  border: 2px solid var(--second);
  border-radius: var(--radius);
  background: rgba(0, 107, 60, 0.1);
  box-shadow: 0 4px 20px rgba(0, 168, 89, 0.3);
  transition: 0.3s transform, 0.3s box-shadow;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 168, 89, 0.5);
  border-color: var(--accent);
}

.article-card__meta {
  margin-bottom: 15px;
  text-align: right;
}

.article-card__time {
  display: inline-block;
  padding: 5px 15px;
  background: linear-gradient(135deg, var(--second), var(--green-light));
  color: var(--white);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.article-card__wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.article-card__image-link {
  flex-shrink: 0;
  display: block;
  width: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--second);
  transition: 0.3s transform, 0.3s border-color;
}

.article-card__image-link:hover {
  transform: scale(1.05);
  border-color: var(--accent);
}

.article-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.article-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
}

.article-card__link {
  color: var(--accent);
  text-decoration: none;
  transition: 0.3s color;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.article-card__link:hover {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}

.article-card__descr {
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .article-card__wrapper {
    flex-direction: column;
  }
  
  .article-card__image-link {
    width: 100%;
  }
  
  .article-card__img {
    height: 250px;
  }
  
  .article-card__title {
    font-size: 20px;
  }
  
  .article-card__descr {
    font-size: 15px;
  }
}