#news-mall { background-color: #f9f9f9; padding-bottom: 0; min-height: auto; height: auto; font-family: 'Montserrat', sans-serif; }
#news-mall .section-title { margin-bottom: 30px; font-size: 2.4rem; padding-top: 20px; font-family: 'Playfair Display', serif; font-weight: 600; color: #333; position: relative; text-align: center; }
#news-mall .section-title::after { content: ''; display: block; width: 80px; height: 3px; background-color: #e74c3c; margin: 15px auto 0; border-radius: 2px; }
.news-carousel-container { position: relative; width: 100%; overflow: hidden; margin-bottom: 40px; padding: 10px 0; }
.news-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; padding: 10px 0; width: 100%; }
.news-item { border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); background-color: white; overflow: hidden; transition: all 0.4s ease; cursor: pointer; transform: translateY(0); display: flex; flex-direction: column; opacity: 1; }
/* Удалено: @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } */
.news-item:hover { transform: translateY(-8px); box-shadow: 0 12px 25px rgba(0,0,0,0.15); }
.news-image-container { width: 100%; position: relative; padding-top: 56.25%; overflow: hidden; }
.news-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-item:hover .news-image { transform: scale(1.05); }
.news-content { padding: 20px; position: relative; display: flex; flex-direction: column; flex-grow: 1; }
.news-date { display: inline-block; font-size: 0.8rem; color: #777; margin-bottom: 8px; background-color: #f7f7f7; padding: 4px 10px; border-radius: 20px; font-weight: 500; align-self: flex-start; }
.news-title { font-size: 1.2rem; margin-bottom: 12px; color: #222; font-weight: 600; line-height: 1.4; }
.news-text { font-size: 0.95rem; color: #555; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }
.carousel-arrow { width: 44px; height: 44px; background-color: rgba(255, 255, 255, 0.9); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.15); z-index: 10; font-size: 22px; transition: all 0.3s; color: #333; border: none; margin: 0 10px; }
.carousel-arrow:hover { background-color: rgba(255, 255, 255, 1); box-shadow: 0 6px 15px rgba(0,0,0,0.2); transform: scale(1.1); }
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }
.carousel-arrow.hidden { display: none; }
.mall-title { margin-top: 20px; margin-bottom: 25px; padding-top: 20px; text-align: center; font-family: 'Playfair Display', serif; font-weight: 600; position: relative; }
.mall-title::after { content: ''; display: block; width: 60px; height: 3px; background-color: #3498db; margin: 15px auto 0; border-radius: 2px; }
.mall-content { padding-top: 0; margin-bottom: 0; position: relative; }
.mall-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 20px; padding: 10px; position: relative; }
.mall-image-container { position: relative; overflow: hidden; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: all 0.4s ease; padding-top: 75%; width: 100%; opacity: 1; }
.mall-image-container:hover { transform: translateY(-8px); box-shadow: 0 12px 25px rgba(0,0,0,0.2); }
.mall-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.mall-image-container:hover .mall-image { transform: scale(1.08); }
.section-content { height: auto; min-height: 0; }
#news-mall .section-content { padding-bottom: 0; }
#news-mall { padding: 80px 20px 0; }
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.85); z-index: 1100; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.4s ease; }
.modal.active { display: flex; opacity: 1; }
.modal-content { background-color: white; max-width: 800px; width: 90%; max-height: 90vh; border-radius: 12px; overflow-y: auto; position: relative; box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); transform: translateY(30px); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); opacity: 0; }
.modal.active .modal-content { transform: translateY(0); opacity: 1; transition-delay: 0.1s; }
.modal-close { position: absolute; top: 15px; right: 15px; background: rgba(0, 0, 0, 0.7); color: white; border: none; width: 36px; height: 36px; border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; font-size: 18px; z-index: 1200; transition: all 0.3s; }
.modal-close:hover { background: rgba(0, 0, 0, 0.9); transform: rotate(90deg); }
.modal-image { width: 100%; max-height: 500px; object-fit: contain; display: block; }
.modal-body { padding: 30px; }
.modal-title { font-size: 1.8rem; margin-bottom: 12px; color: #222; font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.3; }
.modal-date { font-size: 0.9rem; color: #666; margin-bottom: 20px; display: inline-block; background-color: #f7f7f7; padding: 5px 12px; border-radius: 20px; font-weight: 500; }
.modal-text { font-size: 1.05rem; line-height: 1.8; color: #333; white-space: pre-line; text-align: left; padding: 0; margin: 0; overflow-wrap: break-word; word-wrap: break-word; font-family: 'Montserrat', sans-serif; }
.news-nav-arrows, .mall-nav-arrows { display: flex; justify-content: center; margin-top: 30px; gap: 40px; }
#home { position: relative; overflow: hidden; justify-content: center; align-items: center; padding: 0 20px; flex-direction: row; background-color: #1a3a2e; background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center; display: flex; }
body { background-color: #ffffff; }
#layout { padding-top: 60px; padding-bottom: 0; margin-top: 0; margin-bottom: 0; }
.layout-container { margin: 0; padding: 0; }
.section { margin-top: 0; margin-bottom: 0; }
@media (max-width: 1200px) { .mall-gallery { grid-template-columns: repeat(3, 1fr); } .carousel-arrow { width: 40px; height: 40px; } }
@media (max-width: 992px) { .news-container { grid-template-columns: repeat(3, 1fr); } .mall-gallery { grid-template-columns: repeat(3, 1fr); gap: 20px; } #news-mall .section-title { font-size: 2.2rem; } }
@media (max-width: 768px) { #home { display: flex; height: 80vh; min-height: 400px; } .video-background { position: absolute; width: 100%; height: 100%; } #home .center-content { width: 100%; padding: 20px; z-index: 10; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } .news-container { display: flex; flex-wrap: nowrap; } .news-item { flex: 0 0 100%; width: 100%; margin: 0; } .mall-gallery { display: flex; flex-wrap: nowrap; } .mall-image-container { flex: 0 0 100%; width: 100%; margin: 0; padding-top: 75%; } .news-nav-arrows, .mall-nav-arrows { display: flex; justify-content: center; margin-top: 20px; gap: 30px; } .carousel-arrow { display: inline-flex; width: 40px; height: 40px; } #news-mall .section-title { font-size: 2rem; margin-bottom: 20px; } .modal-content { width: 95%; } .modal-body { padding: 20px; } .modal-title { font-size: 1.5rem; } .news-content { padding: 15px; } .news-nav-arrows, .mall-nav-arrows { gap: 30px; margin-top: 20px; } }
@media (max-width: 576px) { .news-carousel-container { margin-bottom: 20px; } #news-mall .section-title, .mall-title { font-size: 1.8rem; } .carousel-arrow { width: 34px; height: 34px; font-size: 16px; } .news-content { padding: 10px; } .news-title { font-size: 1.1rem; } .news-nav-arrows, .mall-nav-arrows { gap: 20px; } }
@media (max-width: 480px) { #news-mall .section-title, .mall-title { font-size: 1.6rem; } .modal-image { max-height: 220px; } .modal-body { padding: 15px; } .news-date { font-size: 0.75rem; padding: 3px 8px; } .news-title { font-size: 1rem; margin-bottom: 8px; } .carousel-arrow { width: 32px; height: 32px; font-size: 14px; } }
