.services-card-list-view {
  background: #fff;
  max-width: 1200px;
  box-shadow: 0 4px 32px rgba(70, 54, 33, 0.08);
  margin: 48px auto;
  position: relative;
  font-family: "DIN 2014", sans-serif;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.services-card-list-view__top {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 30px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(70, 54, 33, 0.04);
  transition: background 0.2s, color 0.2s;
  border-bottom: solid black;
}
.services-card-list-view__top-content {
  color: #232323;
}
.services-card-list-view__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.2;
  font-family: "DIN 2014", sans-serif;
  color: #232323;
  transition: color 0.2s;
}
.services-card-list-view__description {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 14px;
  font-family: "DIN 2014", sans-serif;
}
.services-card-list-view__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-card-list-view__main {
  display: none;
  background: #fff;
  position: relative;
  transition: max-height 0.3s, opacity 0.3s;
  overflow: hidden;
}
.services-card-list-view.is-open {
  box-shadow: 0 8px 32px rgba(70, 54, 33, 0.12);
}
.services-card-list-view.is-open .services-card-list-view__top {
  background: #78582b;
  color: #fff;
  transition: background 0.2s, color 0.2s;
}
.services-card-list-view.is-open .services-card-list-view__top-content {
  color: #fff;
}
.services-card-list-view.is-open .services-card-list-view__main {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 0;
  animation: fadeIn 0.3s;
}
.services-card-list-view.is-open .services-card-list-view__title {
  color: #fff;
}
.services-card-list-view__image {
  width: 50%;
  height: 432px;
  overflow: hidden;
}
.services-card-list-view__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.services-card-list-view__content {
  width: 60%;
  padding: 1rem 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.services-card-list-view__main-title {
  font-family: "Inria Serif", serif;
  font-size: 24px;
  color: #463621;
  margin-top: 19px;
  margin-bottom: 8px;
  line-height: 29px;
  font-weight: 400;
}
.services-card-list-view__main-description {
  font-size: 14px;
  color: #232323;
  margin-bottom: 18px;
  line-height: 24px;
  font-family: "DIN 2014", sans-serif;
}
.services-card-list-view__features {
  font-size: 14px;
  color: #232323;
  margin-top: 20px;
  margin-bottom: 24px;
  line-height: 24px;
  font-family: "DIN 2014", sans-serif;
  padding-left: 0;
}
.services-card-list-view__actions {
  display: flex;
  gap: 48px;
}
.services-card-list-view__btn {
  padding: 10px 24px;
  font-size: 14px;
  font-family: "DIN 2014", sans-serif;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.services-card-list-view__btn--left {
  background: #78582b;
  color: #fff;
  border: 1px solid #78582b;
}
.services-card-list-view__btn--left:hover {
  background-color: #fff;
  border: black solid 1px;
  color: black;
}
.services-card-list-view__btn--right {
  background: #fff;
  color: black;
  border: 1px solid #232323;
}
.services-card-list-view__btn--right:hover {
  background-color: #232323;
  border: #232323 solid 1px;
  color: white;
}
.services-card-list-view__toggle-icon {
  display: inline-block;
  transition: transform 0.3s;
}
.services-card-list-view__svg {
  display: block;
  transition: transform 0.3s;
}
.services-card-list-view__svg-h, .services-card-list-view__svg-v {
  transition: stroke 0.3s;
}
.services-card-list-view.is-open .services-card-list-view__svg {
  transform: rotate(45deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 1100px) {
  .services-card-list-view {
    max-width: 100%;
  }
  .services-card-list-view__main {
    flex-direction: column;
    gap: 24px;
  }
  .services-card-list-view__image, .services-card-list-view__content {
    width: 100%;
    height: auto;
  }
  .services-card-list-view__actions {
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
  }
}
/*# sourceMappingURL=services-card-list-view.css.map */
