.grid {
  display: grid;
  grid-template-columns: auto 400px;
  grid-template-rows: 50px minmax(160px, auto) auto;
  grid-template-areas:
    'header header'
    'main rightbar'
    'footer footer';
  column-gap: 22px;
  row-gap: 20px;
}

.custom-size {
  font-size: 1.25rem;
}

.custom-size-product h1,
.custom-size-product h2,
.custom-size-product h3,
.custom-size-product h4,
.custom-size-product h5,
.custom-size-product h6,
.custom-size-product p {
    font-size: 0.95rem;
}

.custom-size p{
  font-size: 1.0rem;
  text-indent: 35px
}

.custom-size h1 { font-size: 2rem; }

.custom-size h2{
  font-size: 1.45rem;
}

@media (min-width: 768px) {
.grid {
  font-size: 3.5rem;
}
}

.page-header {
  grid-area: header;

}

.page-rightbar {
  grid-area: rightbar;
}

.page-main {
  grid-area: main;

}

.page-footer {
  grid-area: footer;
}

.content {
  color: #242424;
  background-color: #890C58;
  font-weight: 600;
  text-align: center;
  box-sizing: border-box;
    border-radius: 10px;
  height: 100%;
  padding: 10px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-img-top {
        width: 100%;
        height: 200px;
        object-fit: cover;
}

.text-expandable {
    overflow: hidden;
    max-height: 11.5em; /* Примерно 5 строк */
    transition: max-height 0.3s ease;
}

.text-expandable.expanded {
    max-height: none; /* Раскрываем текст полностью */
}

.show-more {
    cursor: pointer;
    color: #890C58; /* Цвет ссылки */
    text-decoration: underline; /* Подчеркивание */
}

.vertical-align-middle {
    vertical-align: middle; /* Вертикальное выравнивание по центру */
}
.custom-size-h1-fake p { font-size: 2rem; }