.base-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.base-gallery__column {
  width: calc();
}
.base-gallery__item {
  position: relative;
  margin-bottom: 30px;
  cursor: pointer;
  width: 100%;
}
@media screen and (max-width: 700px) {
.base-gallery {
    grid-gap: 15px;
}
.base-gallery__item {
    margin-bottom: 15px;
}
}
@media screen and (max-width: 550px) {
.base-gallery {
    grid-template-columns: repeat(2, 1fr);
}
}

.designes-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.designes-list__item .image {
  position: relative;
  margin-bottom: 20px;
}
.designes-list__item .image::after {
  content: '';
  position: absolute;
  height: 0px;
  width: 100%;
  background: var(--color-yellow);
  left: 0;
  bottom: 0;
  transition: var(--duration-fast) var(--ease-out-cubic);
}
.designes-list__item .text .length {
  display: block;
  color: var(--color-gray-text);
  font-size: 12px;
}
.designes-list__item .text .type {
  font-size: 12px;
}
.designes-list__item .text h2 {
  font-size: 14px;
  margin: 5px 0;
  margin-bottom: 0px;
}
.designes-list__item:hover .image::after {
  height: 17px;
  bottom: -8px;
}
@media screen and (max-width: 1100px) {
.designes-list {
    grid-gap: 25px;
}
}
@media screen and (max-width: 768px) {
.designes-list__item .image::after {
    display: none;
}
}
@media screen and (max-width: 650px) {
.designes-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}
.designes-list__item .image {
    margin-bottom: 10px;
}
.designes-list__item .image::after {
    display: none;
}
}
@media screen and (max-width: 400px) {
.designes-list {
    grid-gap: 10px;
}
}

.page-design__image .container {
  padding-top: 0;
}
.page-design__content .body {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-gray-border);
}
.page-design__content .type {
  color: var(--color-gray-text);
}
.page-design__content h1 {
  margin-top: 5px;
  margin-bottom: 2px;
  font-size: 22px;
}
.page-design__content .base-gallery {
  margin-top: 40px;
}
@media screen and (max-width: 650px) {
.page-design__content .container {
    padding-top: 0;
}
.page-design__content time {
    font-size: 12px;
}
.page-design__content h1 {
    font-size: 16px;
}
}

