@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* Основные переменные цветов */
:root {
    --header-footer-bg: #0a0700;
    --accent-color: #3f8617;
    --main-bg: #ffffff;
    --secondary-bg: #f6f6f6;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 8px rgba(0,0,0,0.1);
}

/* Общие стили */
* {
    box-sizing: border-box;
}

body {
    font-family: "Nunito", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    background: var(--main-bg);
}

/* Убираем скругления у всех элементов */
* {
    border-radius: 0 !important;
}

/* Хедер */
.header {
    background: var(--header-footer-bg);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 0;
}

.header .navbar-brand {
    color: white !important;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.header .navbar-nav .nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.header .navbar-nav .nav-link:hover,
.header .navbar-nav .nav-link.active {
    color: white !important;
}

.header .navbar-toggler {
    border: 1px solid rgba(255,255,255,0.3);
}

.header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Основной контент */
.main-content {
    margin-top: 70px;

}

/* Страницы заголовков */
.page-header {
    background: var(--secondary-bg);
    padding: 6rem 0;
    border-bottom: 3px solid var(--header-footer-bg);
}

.page-header h1 {
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* Блоки контента */
.content-section {
    padding: 4rem 0;
}

.content-section.dark {
    background: var(--accent-color);
    color: white;
}

.content-section.light-gray {
    background: var(--secondary-bg);
}

/* Разделительные линии */
.section-divider {
    height: 1px;
    background: var(--border-color);
    margin: 2rem 0;
}

.section-divider.dark {
    background: rgba(255,255,255,0.3);
}

/* Карточки */
.info-card {
    background: white;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.stats-card {
    background: white;
    border: 2px solid var(--header-footer-bg);
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
}

.stats-label {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}


/* Изображения */
.content-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Форма */
.form-section {
    background: var(--secondary-bg);
    padding: 3rem;
}

.form-control {
    border: 1px solid var(--border-color);
    padding: 0.8rem;
    font-family: "Nunito", sans-serif;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(23, 69, 134, 0.25);
}

.btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    padding: 0.8rem 2rem;
    font-weight: 600;
}

.btn-primary:hover {
    background: #0f2d5a;
    border-color: #0f2d5a;
}

/* Cookie баннер */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--header-footer-bg);
    color: white;
    padding: 1rem;
    z-index: 1050;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner .btn {
    margin-left: 0.5rem;
}

/* Футер */
.footer {
    background: var(--header-footer-bg);
    color: white;
    padding: 3rem 0 1rem 0;
}

.footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

.footer .footer-section h5 {
    color: white;
    margin-bottom: 1rem;
}

.footer .footer-links {
    list-style: none;
    padding: 0;
}

.footer .footer-links li {
    margin-bottom: 0.5rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .content-section {
        padding: 2rem 0;
    }
    
    .page-header {
        padding: 4rem 0;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .form-section {
        padding: 2rem;
    }
}

/* Hover эффекты */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-shadow {
    transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}


/* new styles  */

/* Стилі для нових блоків */
:root {
    --header-footer-bg: #0a0700;
    --accent-color: #3f8617;
    --main-bg: #ffffff;
    --secondary-bg: #f6f6f6;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 8px rgba(0,0,0,0.1);
}


.section-padding {
    padding: 100px 10px;
}
/* Стилі для блоку Преимущества */
.advantages-section {
    background-color: var(--main-bg);
    position: relative;
}

.advantage-card {
    background: var(--main-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.advantage-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 4px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 0 4px 4px 0;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(63, 134, 23, 0.15);
}

.advantage-number {
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.advantage-title {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.advantage-text {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Стилі для блоку SMM обзор */
.smm-overview-section {
    background-color: var(--secondary-bg);
    position: relative;
}

.smm-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.section-title-with-line {
    position: relative;
    display: inline-block;
    padding-left: 1.5rem;
}

.section-title-with-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.smm-content-block {
    background: var(--main-bg);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--accent-color);
}

.smm-overview-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.principle-item {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f8f4 100%);
    border: 1px solid rgba(63, 134, 23, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
}

.principle-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    border-radius: 12px 12px 0 0;
}

.principle-title {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.principle-text {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.smm-image-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    position: relative;
}

.smm-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(63, 134, 23, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.smm-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.smm-image-container:hover .smm-image {
    transform: scale(1.05);
}

.cases-highlight {
    background: linear-gradient(135deg, var(--accent-color) 0%, #2d6412 100%);
    color: white;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.cases-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cases-text {
    position: relative;
    z-index: 1;
    line-height: 1.6;
    font-size: 1rem;
}
/* Стилі для блоку Обучающие материалы */
.learning-materials-section {
    background: linear-gradient(135deg, var(--main-bg) 0%, var(--secondary-bg) 100%);
}

.article-card {
    background: var(--main-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(63, 134, 23, 0.15);
}

.article-content {
    padding: 2rem;
}

.article-category {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.article-title {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.article-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Стилі для блоку Кейсы */
.cases-section {
    background-color: var(--secondary-bg);
}

.case-item {
    background: var(--main-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
    position: relative;
}

.case-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #2d6412);
}

.case-item:hover {
    transform: scale(1.02);
}

.case-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-content {
    padding: 1.5rem;
    min-height: 600px;
}

.case-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(63, 134, 23, 0.9);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.case-title {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.case-highlight {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f8f4 100%);
    border-left: 4px solid var(--accent-color);
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-dark);
}

/* Стилі для блоку Отзывы */
.testimonials-section {
    background: var(--main-bg);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.testimonial-card {
    background: var(--main-bg);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-color);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.testimonial-author {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-role {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Стилі для блоку Новости */
.news-section {
    background: linear-gradient(135deg, var(--main-bg) 0%, #f8fffe 100%);
}

.news-intro {
    background: var(--main-bg);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    border-left: 5px solid var(--accent-color);
    margin-bottom: 3rem;
}

.news-intro-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.news-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-item {
    background: var(--main-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #2d6412, var(--accent-color));
    border-radius: 12px 12px 0 0;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(63, 134, 23, 0.12);
}

.news-date {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-title {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-content {
    color: var(--text-light);
    line-height: 1.6;
}

/* Стилі для блоку О нас */
.about-section {
    background-color: var(--secondary-bg);
}

.mission-content {
    background: var(--main-bg);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.mission-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(63, 134, 23, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.mission-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.goals-highlight {
    background: linear-gradient(135deg, var(--accent-color) 0%, #2d6412 100%);
    color: white;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.goals-highlight::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.goals-text {
    position: relative;
    z-index: 1;
    line-height: 1.6;
    font-size: 1rem;
}

.about-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    position: relative;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(63, 134, 23, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

/* Стилі для блоку История создания */
.history-section {
    background: var(--main-bg);
    position: relative;
}

.history-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.history-content {
    background: linear-gradient(135deg, #f8fffe 0%, var(--main-bg) 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
    border: 2px solid rgba(63, 134, 23, 0.1);
    position: relative;
}

.history-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(63, 134, 23, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.history-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.history-text:last-child {
    margin-bottom: 0;
}
/* Стилі для блоку SMM услуги */
.services-section {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, #f0f8f4 100%);
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-intro-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.service-card {
    background: var(--main-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #2d6412);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(63, 134, 23, 0.2);
}

.service-icon {
    background: linear-gradient(135deg, var(--accent-color), #2d6412);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-title {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.services-image-card {
    background: var(--main-bg);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow-light);
    margin: 1rem 0;
}

.services-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
}

/* Стилі для блоку Методы и подходы */
.methods-section {
    background: var(--main-bg);
}

.methods-content {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, #f8fffe 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
    border-left: 6px solid var(--accent-color);
    position: relative;
}

.methods-content::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(63, 134, 23, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.methods-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Стилі для блоку SMM продвижение */
.promotion-section {
    background-color: var(--secondary-bg);
}

.promotion-content {
    background: var(--main-bg);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    border: 2px solid rgba(63, 134, 23, 0.1);
}

.promotion-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.promotion-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.promotion-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(63, 134, 23, 0.3) 0%, transparent 70%);
    z-index: 1;
}

.promotion-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promotion-image-wrapper:hover .promotion-image {
    transform: scale(1.08);
}

/* Стилі для блоку Примеры и кейсы */
.examples-section {
    background: var(--main-bg);
}

.examples-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, #2d6412 100%);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.examples-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.examples-title {
    position: relative;
    z-index: 1;
    margin: 0;
}

.case-example {
    background: var(--secondary-bg);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.case-example:hover {
    background: var(--main-bg);
    box-shadow: var(--shadow-light);
    transform: translateX(10px);
}

.case-example-title {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.case-number-badge {
    background: var(--accent-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.case-example-text {
    color: var(--text-light);
    line-height: 1.6;
}

.examples-main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
}

.examples-image {
    width: 100%;
    height: 460px;
    object-fit: cover;
}