#guides {
  padding: 70px 20px;
}

#guides .container {
  max-width: 1080px;
}

.big-card-event img {
  width: 100%;
  max-height: 240px;
}

.big-card-event .flex {
  padding: 20px 30px;
}

.big-card-event h3 {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: 'New Garet';
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: -0.03em;
  color: var(--text);
}
.big-card-event .new-button {
  width: fit-content;
}

/* new design */
.guides {
  padding: 50px 0;
}
.guides .new-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.guides .new-h2 {
  max-width: 600px;
}
.guides .content {
  margin: 65px 0;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.guides .big-card-event {
  flex: 0 1 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
  align-items: flex-start;
  padding: 0;
  border-radius: 20px;
}
.guides .big-card-event img {
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.guides .cat-tag {
  padding: 4px 10px;
  gap: 10px;
  background: rgba(42, 40, 67, 0.05);
  border-radius: 5px;
  font-family: 'New Garet';
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: -0.03em;
  color: hsl(244deg 25% 21% / 90%);
}
.guides .new-text-infos {
  font-family: 'New Garet';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.03em;
  color: var(--text);
  opacity: 0.6;
}
.guides .top {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.guides .top span {
  font-family: 'New Garet';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: right;
  letter-spacing: -0.02em;
  color: var(--text);
  opacity: .5;
}
.guides .top div {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

@media screen and (max-width: 1024px) {
  .guides .content {
    flex-direction: column;
  }
  .guides .top {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    align-items: center;
  }
  .guides .top span {
    text-align: center;
  }
  .guides .top div {
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .guides .top div a {order: 2}
  .guides .top div span {order: 1}
}