.bose-container {
  width: 100%;
  max-width: 1660px;
  margin: 0 auto;
}

.bose-container .bose-posts {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
}

.bose-container .bose-posts .bose-post {
  width: 100%;
  max-width: 389px;
}

.bose-container .bose-posts .bose-post .bose-post-img {}

.bose-container .bose-posts .bose-post .bose-post-img {
  overflow: hidden;
  border-radius: 16px;
}

.bose-container .bose-posts .bose-post .bose-post-img img {
  width: 389px;
  height: 274px;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.bose-container .bose-posts .bose-post .bose-post-img a:hover img {
  transform: scale(1.05);
}

.bose-container .bose-posts .bose-post-text {
}

.bose-container .bose-posts .bose-post-text h4 {
  font-family: "Montserrat", Sans-serif;
  font-weight: 700;
  font-size: 1.375em;
  color: #666666;
  line-height: 27px;
  transition: color 0.3s ease-in-out;
}

.bose-container .bose-posts .bose-post:hover .bose-post-text h4 {
  color: #333333;
}

.bose-container .bose-posts .bose-post-text p {
  font-family: "Crimson Pro", Sans-serif;
  font-weight: 500;
  font-size: 1.5em;
  color: #666666;
  line-height: 29px;
}

.bose-container .bose-posts a:hover .bose-post-text p {
  color: #666666;
}

@media (max-width: 1366px) {
  .bose-container .bose-posts {
    flex-wrap: wrap;
    gap: 50px;
  }
}