body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
}

.products {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em;
}

.product {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em;
  margin-bottom: 3em;
}

.product-text {
  flex: 1 1 50%;
}

.product-image {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-width: 60%;
  border-radius: 4px;
}

.product-date {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: -1.1em;
  font-size: 1.25em;
}

.product-title {
  font-size: 1.4em;
  font-weight: 1.7em;
 
  margin: 1.9em 0 0.5em;
  line-height: 1.3;
  color: #e6452c; /* червоно-помаранчевий */
}

.highlight {
  color: #e6452c; /* червоно-помаранчевий */
  font-size: 2.1em;
  
}

.product-desc {
  font-size: 1.25em;
  margin-bottom: 1em;
  line-height: 1.4;
}

.product-link {
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid black;
  padding-bottom: 0.2em;
  color: black;
  font-size: 1.25em;
  transition: 0.3s;
}

.product-link:hover {
  opacity: 0.7;
}

hr {
  border: none;
  border-bottom: 1px solid black;
  margin: 2em 0;
}

.site-footer {
  text-align: center;
  padding: 2em 1em;
  font-size: 1em;
  border-top: 1px solid #000;
  margin-top: 4em;
}

.site-footer a {
  color: #e6452c;
  text-decoration: none;
  font-weight: bold;
}

.site-footer a:hover {
  text-decoration: underline;
}


/* Стандартні стилі для десктопу */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Адаптація для планшетів і мобільних */
@media screen and (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .hero-text {
    font-size: 1.2rem;
    text-align: center;
  }

  .menu {
    flex-direction: column;
    gap: 1rem;
  }
}

@media only screen and (max-width: 768px) {
  img {
    display: none;
  }
}