

/* Start:/local/templates/frontside_new/components/bitrix/news.detail/akcii/style.css?17809114774725*/
:root {
    --red: #EF4836;
    --black: #231F20;
    --grey: #BBBDC0;
    --dark-grey: #343538;
    --light-grey: #F1F1F1;
    --white: #FFFFFF;
    --px: 104px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* BANNER */
.promo-banner {
    width: 100%;
    height: 460px;
    background: linear-gradient(135deg, #1a2d3d 0%, #2d4862 60%, #3d6080 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
}

.promo-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(35, 31, 32, .45) 65%, rgba(35, 31, 32, .78) 100%);
}

.promo-banner__content {
    position: relative;
    z-index: 2;
    padding: 0 var(--px) 52px;
    width: 100%;
}

.promo-banner__tags {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.promo-banner__deadline {
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
}

.promo-banner__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
}

/* TAGS */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.tag--active {
    background: var(--red);
    color: var(--white);
}

.tag--grey {
    background: var(--grey);
    color: var(--white);
}

.tag--dark {
    background: rgba(35, 31, 32, .7);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .3);
}

.tag .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .75);
}

.link-back::before {
    content: '←';
    margin-right: 8px;
}

/* MAIN CONTENT */
.promo-body {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 80px;
    padding: 60px var(--px) 120px;
}

.promo-content__meta {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.promo-content__date {
    font-size: 13px;
    color: var(--grey);
}

/* STATIC CONTENT */
.static-content {
    font-size: 18px;
    line-height: 1.65;
}

.static-content p {
    margin-bottom: 20px;
}

.static-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
}

.static-content ul {
    list-style: none;
    margin: 20px 0;
}

.static-content ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.static-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 2px;
    background: var(--red);
}

/* CONDITIONS */
.promo-conditions {
    margin-top: 48px;
    padding: 40px;
    background: var(--light-grey);
    border-left: 4px solid var(--red);
}

.promo-conditions__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.promo-conditions__list {
    list-style: none;
}

.promo-conditions__list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 14px;
}

.promo-conditions__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 2px;
    background: var(--red);
}

/* FORM */
.promo-form-wrap {
    position: sticky;
    top: 100px;
}

.promo-form-card {
    background: var(--white);
    border: 1px solid var(--light-grey);
    padding: 48px 40px;
}

.promo-form-card__title {
    font-size: 28px;
    font-weight: 700;
}

.promo-form-card__subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    margin-top: 12px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    :root { --px: 60px; }
    .promo-body { grid-template-columns: 1fr 400px; gap: 48px; }
    .promo-banner__title { font-size: 38px; }
}

@media (max-width: 1024px) {
    :root { --px: 40px; }
    .promo-body { grid-template-columns: 1fr; gap: 60px; }
    .promo-form-wrap { position: static; max-width: 640px; }
    .promo-banner { height: 360px; }
    .promo-banner__title { font-size: 32px; }
}

@media (max-width: 768px) {
    :root { --px: 20px; }
    .promo-banner { height: 300px; }
    .promo-banner__title { font-size: 22px; }
    .promo-banner__content { padding: 0 var(--px) 24px; }
    .promo-body { padding: 36px var(--px) 60px; }
    .promo-form-card { padding: 28px 20px; }
    .countdown { padding: 16px; gap: 10px; }
    .countdown__num { font-size: 26px; min-width: 38px; }
}

@media (max-width: 480px) {
    .promo-banner { height: 240px; }
    .promo-banner__title { font-size: 18px; }
    .countdown__unit:last-child, .countdown__sep:last-of-type { display: none; }
}
/* End */


/* Start:/local/templates/frontside_new/components/bitrix/news.list/list_akcii/style.css?17809098191413*/
/* RELATED */
.related {
    padding: 0 var(--px) 120px;
    border-top: 1px solid var(--light-grey);
    padding-top: 80px;
}

.related__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 48px;
}

.related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.related-card {
    border: 1px solid var(--light-grey);
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
}

.related-card__img {
    height: 200px;
    position: relative;
    background: var(--light-grey);
}

.related-card__img--c2 {
    background: linear-gradient(135deg, #6d4a2d, #3d2010);
}

.related-card__img--c3 {
    background: linear-gradient(135deg, #3d6b4a, #1a3d2a);
}

.related-card__tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
}

.related-card__body {
    padding: 24px;
}

.related-card__name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.related-card__desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.related-card__link {
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
}

@media (max-width: 1024px) {
    .related__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .related { padding: 60px var(--px); }
    .related__grid { grid-template-columns: 1fr; }
}
/* End */
/* /local/templates/frontside_new/components/bitrix/news.detail/akcii/style.css?17809114774725 */
/* /local/templates/frontside_new/components/bitrix/news.list/list_akcii/style.css?17809098191413 */
