/* Base */
body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: #252525;
    background-color: #fefefe;
  }
  
  /* BEM blocks */
  
  /* Header */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .header__logo img {
    width: 20%;
  }
  
  .header__nav {
    display: flex;
    gap: 16px;
  }
  
  .header__link {
    text-decoration: none;
    color: #000;
    font-size: 24px;
  }
  
  /* Hero */
  .hero {
    padding: 40px 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .hero__title {
    font-size: 72px;
    line-height: 88px;
    margin: 0 0 16px;
    text-align: center;
  }
  
  .hero__description {
    font-size: 26px;
    color: #252525;
    text-align: center;
  }
  
  /* Cards */

  .card {
    background: #f9f9f9;
    border-radius: 40px;
    padding: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    margin: 32px auto;
    width: 80%;
  }
  
  .card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }
  
  .card__avatar-wrapper {
    flex-shrink: 0;
  }
  
  .card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }
  
  .card__header {
    flex-grow: 1;
  }
  
  .card__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: #262626;
  }
  
  .card__subtitle {
    font-size: 20px;
    color: #808080;
    margin-top: 2px;
  }
  
  .card__cta {
    color: #675ddf;
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 4px;
    white-space: nowrap;
  }
  
  .card__cta:hover {
    text-decoration: underline;
  }
  
  .card__text {
    font-size: 24px;
    font-weight: 400;
    color: rgba(38, 38, 38, 0.8);
    margin: 24px 0;
    line-height: 32px;
  }
  
  .card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .card__tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .card__tag {
    font-size: 20px;
    color: #675ddf;
    text-decoration: none;
  }
  
  .card__tag:hover {
    text-decoration: underline;
  }
  
  .card__buttons {
    display: flex;
    gap: 12px;
  }
  
  .button {
    border: 1px solid #675ddf;
    border-radius: 36px;
    padding: 24px 48px;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: all 0.2s ease;
  }
  
  .button--ghost {
    background-color: transparent;
    color: #675ddf;
  }
  
  .button--ghost:hover {
    background-color: #f0ecff;
  }
  
  .button--primary {
    background-color: #675ddf;
    color: #fff;
  }
  
  .button--primary:hover {
    background-color: #584edb;
  }
  
  
  /* Footer */
  .footer {
    display: flex;
    justify-content: space-between;
    padding: 48px 24px;
    background-color: #fefefe;
  }
  
  .footer__title {
    font-weight: bold;
    margin-bottom: 12px;
    font-size: 24px;
  }
  
  .footer__icons span {
    margin-right: 10px;
  }

  .footer__icon img {
    width: 50%;
    max-width: 100%;
  }
  
  .footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer__link {
    display: block;
    color: #131313;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 16px;
    margin-top:30px;
  }
  
  .footer__copyright {
    font-size: 14px;
    color: #000;
    margin-top: 16px;
  }

  /* Reuse everything from original styles.css */
/* Add these overrides */

.hero--category {
  flex-direction: column;
  text-align: center;
  padding-top: 80px;
}

.hero--category .hero__title {
  font-size: 36px;
  margin: 0 auto;
  line-height: 1.3;
}

/* product styles */
/* Product Hero */
.hero--product {
  flex-direction: column;
  align-items: center;
  padding: 60px 24px;
  text-align: center;
}

.hero__cta {
  margin-top: 20px;
}

/* Overview Section */
.overview {
  max-width: 1920px;
  width: 1080px;
  margin: 60px auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.overview__item {
  background: #f9f9f9;
  border-radius: 24px;
  padding: 32px;
  margin: 40px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.overview__title {
  font-size: 72px;
  line-height: 88px;
  margin-bottom: 12px;
  font-weight: 600;
}

.overview__text {
  font-size: 26px;
  line-height: 36px;
}

/* Blog articles */
.articles {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.articles__title {
  font-size: 72px;
  text-align: center;
  line-height: 88px;
  margin-bottom: 32px;
}

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

.article-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  padding: 20px;
  width: 300px;
}

.article-card__title {
  font-weight: bold;
  margin-bottom: 8px;
}

.article-card__text {
  font-size: 14px;
  color: #555;
}
