@charset "utf-8";

.columnList__wrap {
  flex-direction: column;
  gap: 16px;
  list-style-type: none !important;
}
.columnList__wrap li {
  border-bottom: solid 1px #e5e3e0;
  list-style: none;
  margin: 0 !important;
}
.columnList__wrap a {
  display: flex;
  gap: 16px;
  padding: 0 0 16px;
}
@media screen and (width <= 768px) {
  .columnList__wrap a {
    flex-direction: column;
  }
}
.columnList__wrap img {
  border-radius: 8px;
  object-fit: cover;
}
@media screen and (width > 768px) {
  .columnList__wrap img {
      width: 260px;
  }
}
@media screen and (width <= 768px) {
  .columnList__wrap img {
      width: 100%;
  }
}

.columnList__wrap__item__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.columnList__wrap h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
.columnList__wrap h3::before {
  content: none;
}
@media screen and (width > 768px) {
  .columnList__wrap h3 {
    font-size: 16px;
  }
}
@media screen and (width <= 768px) {
  .columnList__wrap h3 {
    font-size: 14px;
  }
}
.columnList__wrap .category {
  background: #e2dcd6;
  border-radius: 4px;
  font-size: 10px;
  margin: 0;
  padding: 4px 6px;
  width: fit-content;
}
.columnList__wrap .lead {
  font-size: 13px;
  margin: 0;
}
.columnList__wrap .date {
  font-size: 10px;
  margin: 0;
  text-align: right;
}

form input[type="text"],
form input[type="email"],
form textarea {
  border: solid 1px #4a3e25;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
}

p:has(input[type="submit"]) {
  text-align: center;
}
form input[type="submit"] {
  background: #4a3e25;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  margin: auto;
  padding: 8px 48px;
  text-align: center;
  width: 180px;
}
.wpcf7-spinner {
  display: inline;
}