header {
   height: auto;
}

.gallery {
   margin-bottom: 80px;
}

.gallery__photo img,
.mob__gallery-photo img {
   width: 380px;
   height: 380px;
   object-fit: cover;
}

.gallery,
.mob__gallery {
   background-color: transparent;
   padding-top: 50px;
   margin-bottom: 50px;
}

/* ------- Filtr Gallery --------- */
.gallery-filters {
   margin-bottom: 20px;
}

.filter-btn {
   color: #212121;
   font-weight: 500;
   padding: 10px 20px;
   margin-top: 6px;
   margin-right: 6px;
   margin-bottom: 6px;
   cursor: pointer;
   background-color: #eeeeee;
   border-radius: 5px;
   box-shadow: 1px 1px 1px rgba(121, 121, 121, 0.1);
   transition:
      background-color 0.3s,
      box-shadow 0.3s;
}
.filter-btn.active {
   background-color: #2c74d7;
   color: #fff;
}

.gallery__wrapper {
   margin-top: 50px;
   margin-bottom: 100px;
}

.gallery__photo {
   display: flex;
   flex-wrap: wrap;
   border-radius: 8px;
   gap: 40px;
   align-items: flex-start;
   margin-top: 40px;
   margin-bottom: 60px;
}

.gallery__image {
   flex-grow: 1;
   flex-shrink: 1;
   flex-basis: 300px;
}

.gallery__image img {
   max-width: 600px;
   width: 100%;
   max-height: 800px;
   margin-bottom: 10px;
   border-radius: 6px;
   object-fit: cover;
   box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.gallery__info {
   flex-grow: 1;
   flex-shrink: 1;
   flex-basis: 300px;
   max-height: 400px;
   min-width: 300px;
   overflow-y: auto;
}

.gallery__title {
   font-size: 22px;
   font-weight: 700;
   margin-bottom: 10px;
}

.gallery__description {
   margin-bottom: 12px;
}

.gallery__link a {
   font-size: 18px;
   color: #007bff;
   font-weight: 700;
   transition: color 0.3s;
}

.gallery__link a:hover {
   color: #0056b3;
}
