

/* Start:/local/components/dmcg/blog/templates/.default/style.css?17646669447333*/
/* === ОСНОВА === */
.section-inner {
    background: #715352 url("/local/templates/barkli-dan/images/sec_31_bg.png") center top repeat;
    background-size: contain;
    color: #0F2C47;
    font-family: "Isabella Sans", sans-serif;
    padding: 120px 0 60px;
    text-align: center;
}


.section-inner .container {
    max-width: 1190px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    position: relative;
}

h3{
    font-family: "SangBleu Sunrise", serif;
}
a{
    text-decoration: none;
}

/* === СЕТКА === */
.blog-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.blog-block {
    display: block;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform .4s ease, box-shadow .4s ease;
}

.blog-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-block:hover .blog-image img {
    transform: scale(1.05);
}

.blog-text {
    padding: 40px;
    background: #fff;
}

/* === БЛОК 1 (широкий) === */
.block_1 {
    grid-column: span 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 18px;
    max-height: 590px;
    min-height: 420px;
    background: #0E2B42;
}

.block_1 .blog-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.block_1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(95%);
    transition: transform .8s ease;
}

.block_1:hover img {
    transform: scale(1.03);
}

.block_1 .blog-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 40%;
    max-height: 30%;
    width: 100%;
    height: auto;
    background: linear-gradient(rgba(252, 252, 252, 0.66), rgba(196, 196, 196, 0.9));
    color: #0F2C47;
    padding: 40px;
    text-align: left;
    border-radius: 12px;
}

.block_1 .blog-meta {
    display: flex;
    font-weight: bold;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.block_1 .blog-title {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 500;
    color: #0b3659;
}

/* === БЛОК 2 === */
.block_2 {
    background: #F6F3EF;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.block_2 .blog-image {
    width: 100%;
    overflow: hidden;
}

.block_2 .blog-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .6s ease;
}

.block_2:hover .blog-image img {
    transform: scale(1.04);
}

.block_2 .blog-card-body {
    background: #ebe8e9;
    margin: -50px auto 0;
    padding: 30px 40px 35px;
    width: calc(100% - 40px);
    border-radius: 6px;
    position: relative;
    z-index: 2;
    text-align: left;
}

.block_2 .meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.block_2 .date {
    font-size: 14px;
    color: #0F2C47;
}

.block_2 .cat {
    font-size: 14px;
    color: #0F2C47;
    font-weight: 500;
    opacity: 0.8;
}

.block_2 h3 {
    font-family: "Isabella Sans", sans-serif;
    font-size: 24px;
    line-height: 1.3;
    color: #0F2C47;
    margin: 12px 0 18px;
}

.block_2 .author {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 15px;
}

.block_2 .author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.block_2 .author-text p {
    font-size: 18px;
    color: #0F2C47;
    margin: 0;
    padding-right: 20px;
    line-height: 1.45;
}

/* === АДАПТИВ === */
@media (max-width: 768px) {

    .block_2 .blog-card-body {
        width: 90%;
        padding: 22px 20px;
    }
    .block_2 h3 {
        font-size: 20px;
    }
    .block_2 .meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* === БЛОК 3 === */
.block_3 {
    background: #8B6A69;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}

.block_3 .blog-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 0;
}

.block_3 .blog-content {
    padding: 50px 40px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.block_3 .date {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}

.block_3 .cat {
    font-size: 20px;
    font-family: "Isabella Sans", sans-serif;
    color: #fff;
    margin-bottom: 40px;
}

.block_3 h3 {
    font-size: 26px;
    line-height: 1.3;
    color: #fff;
    max-width: 500px;
}

.block_3 .blog-image {
    max-width: 420px;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.block_3 .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.block_3:hover .blog-image img {
    transform: scale(1.05);
}

/* === АДАПТИВ === */
@media (max-width: 1024px) {
    .block_3 .blog-content {
        padding: 40px 30px;
    }
    .block_3 h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .block_2 .author-text p{
        font-size: 13px;
    }
    .block_3 .cat {
        margin-bottom: 10px;
    }

    .block_3 .blog-inner {
        flex-direction: column-reverse;
    }
    .block_3 .blog-image {
        max-width: 100%;
        height: 300px;
        border-radius: 0;
    }
    .block_3 .blog-content {
        padding: 25px 20px 30px;
    }
    .block_3 h3 {
        font-size: 20px;
    }
}


/* === БЛОК 4 === */
.block_4 {
    background: #E8E4DB;
    color: #0F2C47;
    border-radius: 12px;
    overflow: hidden;
}

.block_4 .blog-image {
    max-width: 100%;
    height: 300px;
    border-radius: 0;
}

.block_4 h3 {
    font-size: 20px;
    margin: 10px 0;
}

/* === БЛОК 5 (двухколоночный) === */
.block_5 {
    color: #1E4B6E;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.block_5 .blog-text {
    padding: 40px;
    background-color: #eaf3fc;
}

.block_5 h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* === АДАПТИВ === */
@media (max-width: 1024px) {
    .block_1 {
        max-height: 420px;
    }
    .block_1 .blog-overlay {
        padding: 30px;
    }
    .block_1 .blog-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .section-inner{
        padding: 91px 15px 20px;
    }

    .blog-wrapper {
        grid-template-columns: 1fr;
    }
    .block_1 {
        grid-column: span 1;
        max-height: 80vh;
    }
    .block_1 .blog-overlay {
        max-width: 90%;
        padding: 20px;
    }
    .block_2 .blog-card-body {
        width: 90%;
        margin-top: -30px;
        padding: 20px;
    }
    .block_2 h3 {
        font-size: 20px;
    }
    .block_5 {
        grid-template-columns: 1fr;
    }
}

/* End */
/* /local/components/dmcg/blog/templates/.default/style.css?17646669447333 */
