

/* Start:/bitrix/components/bitrix/banner_slider/templates/.default/style.css?17367738402955*/
.custom-banner-slider {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.custom-banner-item {
    position: relative;
    width: 100%;
    height: auto;
}

.custom-banner-image-container {
    position: relative;
    width: 100%;
    padding-top: 40%; /* Соотношение 2.5:1 */
    overflow: hidden;
}

.custom-banner-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Изображение обрезается по контейнеру */
}

.custom-banner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.custom-banner-content {
    position: absolute;
    top: 40%;
    left: 20px;
    transform: translateY(-50%);
    text-align: left;
    color: #fff;
    z-index: 2;
    padding: 20px;
    border-radius: 10px;
}

.custom-banner-content h2 {
    font-size: 1.4em;
    margin-bottom: 15px;
}

.custom-banner-content p {
    font-size: 3.0em;
    margin-bottom: 25px;
    font-weight: bold;
}

.custom-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 40px;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-btn i {
    margin-left: 10px;
    transition: color 0.3s ease;
}

.custom-btn:hover {
    background-color: #fff;
    transform: scale(1.05);
    color: #000000;
}

.custom-btn:hover i {
    color: #333;
}

/* Адаптивные стили */
@media (max-width: 1200px) {
    .custom-banner-content h2 {
        font-size: 1.2em;
    }
    .custom-banner-content p {
        font-size: 2.5em;
    }
    .custom-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 992px) {
    .custom-banner-content h2 {
        font-size: 1em;
    }

    .custom-banner-content p {
        font-size: 2em;
    }

    .custom-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 768px) {
    .custom-banner-image-container {
        padding-top: 56.25%; /* Соотношение 16:9 */
    }

    .custom-banner-content h2 {
        font-size: 0.8em;
    }

    .custom-banner-content p {
        font-size: 1.5em;
    }

    .custom-btn {
        padding: 8px 15px;
        font-size: 0.8em;
    }
}

@media (max-width: 576px) {
    .custom-banner-content h2 {
        font-size: 0.7em;
    }

    .custom-banner-content p {
        font-size: 1.2em;
    }

    .custom-btn {
        padding: 6px 10px;
        font-size: 0.7em;
    }
}
/* End */


/* Start:/bitrix/templates/university_default/components/bitrix/news.list/vazhnoe/style.css?17542940383380*/
.modbox-info-blocks {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    margin: 0 auto;
    overflow-x: hidden;
	 background-color: #fdfdfd;
}

.modbox-info-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
}

.modbox-info-item {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.33% - 20px);
    max-width: 350px;
    min-width: 300px;
    transition: transform 0.3s ease, background 0.5s ease, color 0.5s ease;
    margin: 10px;
    box-sizing: border-box;
}

.modbox-info-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(90deg, #2e7d32, #81c784);
}

.modbox-info-item:hover .modbox-info-title,
.modbox-info-item:hover .modbox-info-arrow,
.modbox-info-item:hover .modbox-info-link {
    color: #fff;
    text-decoration: none;
}

.modbox-info-link {
    position: relative;      /* добавили */
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px;
    text-decoration: none;
    color: #333;
    min-height: 160px;
    box-sizing: border-box;
}

/* 2) Фиксируем стрелку в левом-нижнем углу этого блока */
.modbox-info-arrow {
    position: absolute;      /* сделали абсолютной */
    bottom: 20px;            /* отступ от нижней границы .modbox-info-link */
    left: 20px;              /* отступ от левой границы .modbox-info-link */
    font-size: 1.3em;
    line-height: 1;
    transition: color 0.3s ease;
    /* удаляем display:inline-block, flex и пр. — уже не нужно */
}

.modbox-info-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    padding-right: 10px;
    margin: 0;
    height: calc(100% - 40px);  /* 40px = верхний 20px + нижний 20px паддинги .modbox-info-link */
    box-sizing: border-box;
}


.modbox-info-title {
    margin-top: 8px;                        /* сбрасываем отступы */
    font-size: 1.1em;
    font-weight: 600;
}

.modbox-info-icon {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;         /* иконка сверху */
    justify-content: center;
    margin: 0;
}

.modbox-icon-bg {
    width: 70px;
    height: 70px;
    background-color: #e8f5e9;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modbox-icon-inner {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.modbox-no-img {
    font-size: 0.75em;
    color: #888;
    text-align: center;
    line-height: 1.1;
}

@media (max-width: 1200px) {
    .modbox-info-item {
        flex: 1 1 calc(33.33% - 20px);
    }
}

@media (max-width: 992px) {
    .modbox-info-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .modbox-info-item {
        flex: 1 1 100%;
    }
    .modbox-info-blocks {
        padding: 20px 10px;
    }
}

/* End */


/* Start:/bitrix/templates/university_default/components/bitrix/news.list/news_list_tiles/style.css?17459163724475*/
.magazine-news-section {
  position: relative;
  background: linear-gradient(135deg, #f0f0f0, #e6e6e6, #dddddd, #d5d5d5);
  color: #222;
  margin: 0 auto;
  padding: 0; /* УБИРАЕМ padding: 60px 10% */
  overflow: hidden;
}

.magazine-container {
  position: relative;
  z-index: 1;
  padding: 60px 10%; /* внутренние отступы */
}


.magazine-news-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -80px;
  width: 600px;
  height: 600px;
  background: url('/bitrix/templates/university_default/components/bitrix/news.list/news_list_tiles/volgau_gerb.png') no-repeat center center/contain;
  filter: grayscale(100%) opacity(0.1);
  z-index: 0;
  pointer-events: none;
}

/* === Заголовок секции === */
.magazine-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;

}

.magazine-title {
  font-size: 2rem;
  font-weight: bold;
  border-left: 5px solid #FF3D00;
  padding-left: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

@media (max-width: 768px) {
  .magazine-header {
    justify-content: center;
    padding-left: 0;
  }

  .magazine-title {
    border-left: none;
    text-align: center;
  }
}

/* === Сетка карточек === */
.magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* === Общие стили карточек === */
.magazine-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 280px;
  display: flex;
  flex-direction: column;
  background-color: #222;
  color: white;
}

.magazine-highlight {
  grid-column: span 2;
  height: 450px;
}

/* === Фоновое изображение === */
.magazine-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.magazine-image-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0) 100%);
  z-index: 2;
}


/* === Контейнер с контентом поверх изображения === */
.magazine-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

/* === Категории (бэйджи) === */
.magazine-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0px;
}

.magazine-category {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  backdrop-filter: blur(4px);
}

/* === Заголовок и дата === */
.magazine-heading {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}
.magazine-card h3.magazine-heading {
  margin-top: 10px;
}

.magazine-highlight .magazine-heading {
  font-size: 1.8rem;
}

.magazine-date {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* === Ссылки === */
.magazine-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.magazine-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* === Пагинация (если нужна стилизация) === */
.magazine-pagination {
  margin-top: 30px;
  text-align: center;
}
.magazine-all-wrapper {
  text-align: left;
  margin-top: 30px;
}

.magazine-all-link {
  margin-bottom:15px;
  font-size: 1rem;
  color: #333; /* Изменили цвет на #333 */
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.magazine-all-link i {
  margin-left: 8px; /* Отступ для иконки */
  font-size: 0.8rem; /* Размер иконки */
}

.magazine-all-link:hover {
text-decoration:none;
  color: #555; /* Цвет при наведении */
}

/* === Адаптивность === */
@media (max-width: 1024px) {
  .magazine-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .magazine-highlight {
    grid-column: span 1;
    height: 300px;
  }

  .magazine-item {
    height: 240px;
  }

  .magazine-heading {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .magazine-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .magazine-highlight {
    height: 250px;
  }

  .magazine-item {
    height: 200px;
  }

  .magazine-heading {
    font-size: 0.9rem;
  }

  .magazine-news-section::before {
    display: none;
  }
.magazine-title {

  padding-left: 0px;


}
}

/* End */
/* /bitrix/components/bitrix/banner_slider/templates/.default/style.css?17367738402955 */
/* /bitrix/templates/university_default/components/bitrix/news.list/vazhnoe/style.css?17542940383380 */
/* /bitrix/templates/university_default/components/bitrix/news.list/news_list_tiles/style.css?17459163724475 */
