/* Section start */
.blog {
    background: linear-gradient(306deg, var(--color-primary) 27.37%, var(--color-primary-accent) 53.72%, #3950ff 78.05%);
}
.sect_start {
    position: relative;
    text-align: center;
    padding: 120px 16px 80px;
    max-width: 1321px;
    margin: 0 auto;
}
.sect_start .box_info {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    max-width: 870px;
}
.sect_start .category {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    justify-content: space-between;
    width: 100%;
}
.sect_start .category a{
    color: var(--white);
    text-transform: uppercase;
}

.author {
    color: var(--white);
    font-size: 16px;
    line-height: 26px;
}

.author-link {
    display: flex;
    flex-direction: row;
     align-items: center; 
}
.author-avatar {
    width: 36px;
    border-radius: 12px;
    margin-right: 12px;
}

.sect_start .category h4 {
    color: var(--white);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}
.sect_start h1 {
    color: var(--white);
    text-align: left;
    font-size: 58px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    width: 100%;
    margin-bottom: 24px;
}
.sect_start p {
    color: var(--white);
    text-align: left;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 32px;
}

@media (max-width: 650px) {
    .sect_start {
        padding-top: 140px;
        padding-bottom: 50px;
    }
    .sect_start .category h4 {
        font-size: 14px;
    }
    .sect_start .category {
        gap: 8px;
    }
    .sect_start h1 {
        font-size: 48px;
        margin-bottom: 24px;
    }
    .sect_start p {
        font-size: 14px;
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 24px;
    }
}

/* Blog sections */
.sect_post {
    background-color: var(--white);
    padding: 32px 0 160px 0;
}

.post-container {
    justify-content: space-between;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 32px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    margin-top: -100px;
}

.post-item {
    width: 100%;
    overflow: hidden;
    padding-bottom: 40px;
}

.attachment-post-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 24px;
}

.post-content {
    padding-top: 16px;
}

/* Списки */
.sect_post ul,
.sect_post ol {
    margin: 1em 0 1.5em 1.5em;
}

.sect_post ul {
    list-style-type: disc;
}

.sect_post ol {
    list-style-type: decimal;
}

.sect_post li {
    margin-bottom: 0.5em;
}

.sect_post ul li {
    margin-bottom: 16px;
    padding-left: 16px;
    position: relative;
    font-feature-settings: "liga" off, "clig" off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 22.5px */
}

.sect_post ul li::before {
    content: "●";
    position: absolute;
    left: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 150%;
}

.sect_post ol li {
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    font-feature-settings: "liga" off, "clig" off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    counter-increment: policy-counter;
}

.sect_post ol {
    counter-reset: policy-counter;
}

.sect_post ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 150%;
}

.sect_post ul.list-none {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sect_post ul.list-none li {
    margin-bottom: 16px;
    font-feature-settings: "liga" off, "clig" off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.post-category {
    display: block;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.post-content h2 {
    color: var(--color-text);
    font-size: 32px;
    margin-bottom: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
}

.post-content h3 {
    color: var(--color-text);
    font-size: 24px;
    margin-bottom: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
}

.post-content p {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 24px;
}

.post-content p a {
    color: var(--color-primary);
}

.post-content p img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.post-content h3 a {
    color: var(--color-text);
    text-decoration: none;
}

.post-content h3 a:hover {
    color: var(--color-primary);
}

.post-date {
    display: block;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: var(--color-text-secondary);
    opacity: 0.5;
}

.sidebar img {
    border-radius: 12px;
}

/* Form style */
.card-form {
    background-color: var(--color-primary);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
}

.card-form p {
    width: 100%;
}

.card-form .input-group {
    width: 100%;
    position: relative;
}

.card-form form.wpcf7-form {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-direction: column;
}

.card-form input[type="text"], .card-form  input[type="email"]  {
    border-radius: 8px !important;
    border: 1px solid #353841 !important;
    width: 100%;
    color: #020611;
    font-feature-settings: "liga" off, "clig" off;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    padding: 19px 14px !important;
    outline: none;
    transition: var(--trans) !important;

}
.card-form input[type="text"]:hover, .card-form input[type="email"]:hover{
    border: 1px solid #010510;
}
.card-form input:focus {
    border: 1px solid var(--color-primary);
}
.card-form.input_error, .wpcf7-not-valid {
    border: 1px solid #ff5d60 !important;
}
.card-form.error, span.wpcf7-not-valid-tip{
    color: #ff5d60;
    font-feature-settings: "liga" off, "clig" off;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    margin-left: 14px;
    text-transform: capitalize;
    transition: var(--trans);
}
.card-form .btn-submit {
    display: flex;
    height: 56px;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--Dark, #141414) !important;
    font-feature-settings: "liga" off, "clig" off;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    border-radius: 8px;
    background: var(--Geen-Lime, #FFFFFF) !important;
    cursor: pointer;
    outline: none;
    border: none;
    transition: var(--trans);
    width: 100%;
}
.card-form .btn-submit:hover {
    box-shadow: 0px 4px 28px 0px rgba(187, 255, 67, 0.2);
    transform: translateY(-5px);
}
.wpcf7-spinner{
    display: none !important;
}
.wpcf7-response-output{
    display: none;
}


@media (max-width: 700px) {
    .post-container {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    .post-item {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .post-content h3 {
        font-size: 18px;
    }
    .post-category {
        font-size: 12px;
    }
    .post-date {
        font-size: 12px;
    }
    .card-form .btn-trial{
        margin-top: 16px;
        margin-left: 0;
    }
    .card-form form.wpcf7-form {
        flex-direction: column;
        gap: 0;
    }
}


/* total row and col */
.row {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 980px) {
    .row {
        justify-content: flex-start;
        flex-direction: column;
    }
}


