.innate-post-grid-section {
    width: min(calc(100% - 32px), 1380px);
    margin: 0 auto;
}

.innate-post-grid {
    --innate-post-grid-columns: 3;
    display: grid;
    grid-template-columns: repeat(var(--innate-post-grid-columns), minmax(0, 1fr));
    gap: 28px;
}

.innate-post-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    border: 1px solid #e4e8f1;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 14px 42px rgba(10, 24, 68, 0.08);
}

.innate-post-card--hidden {
    display: none;
}

.innate-post-card__media {
    position: relative;
    display: block;
/*     aspect-ratio: 1.3 / 1; */
    overflow: hidden;
    background: linear-gradient(135deg, #0e6283, #a4dcf3);
}

.innate-post-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.innate-post-card__media:hover .innate-post-card__image,
.innate-post-card__media:focus .innate-post-card__image {
    transform: scale(1.04);
}

.innate-post-card__image--placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #103b63, #58badf);
}

.innate-post-card__category {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    max-width: calc(100% - 40px);
    padding: 6px 14px;
    border-radius: 8px;
    background: #2d3f85;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.innate-post-card__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 28px 30px 30px;
}

.innate-post-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-bottom: 18px;
    color: #44506f;
    font-size: 15px;
    line-height: 1.4;
}

.innate-post-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.innate-post-card__meta-icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
    color: #283a7a;
}

.innate-post-card__meta-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.innate-post-card__title {
    margin: 0 0 14px;
    color: #081738;
    font-size: clamp(28px, 1.9vw, 36px);
    font-weight: 700;
    line-height: 1.15;
	font-size:24px;
}

.innate-post-card__title a {
    color: inherit;
    text-decoration: none;
}

.innate-post-card__title a:hover,
.innate-post-card__title a:focus {
    color: #1f4e93;
}

.innate-post-card__excerpt {
    margin-bottom: 6px;
    color: #5b6786;
    font-size: 15px;
    line-height: 1.7;
}

.innate-post-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    min-height: 46px;
    margin-top: auto;
    padding: 12px 28px;
    border: 0;
    border-radius: 6px;
    background: #2d3f85;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.innate-post-card__button:hover,
.innate-post-card__button:focus {
    background: #20326d;
    color: #ffffff;
    transform: translateY(-1px);
}

.innate-post-grid__actions {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.innate-post-grid__load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 50px;
    padding: 12px 28px;
    border: 0;
    border-radius: 8px;
    background: #2d3f85;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.innate-post-grid__load-more:hover,
.innate-post-grid__load-more:focus {
    background: #20326d;
    transform: translateY(-1px);
}

.innate-post-grid__load-more.is-hidden,
.innate-post-grid__actions.is-hidden {
    display: none;
}

.innate-post-grid__message {
    width: min(calc(100% - 32px), 1380px);
    margin: 0 auto;
    color: #5b6786;
    font-size: 16px;
}

@media (max-width: 1199px) {
    .innate-post-grid-section,
    .innate-post-grid__message {
        width: min(calc(100% - 28px), 1380px);
    }

    .innate-post-grid {
        grid-template-columns: repeat(min(var(--innate-post-grid-columns), 2), minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .innate-post-grid-section,
    .innate-post-grid__message {
        width: min(calc(100% - 20px), 1380px);
    }

    .innate-post-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .innate-post-card__content {
        padding: 22px;
    }

    .innate-post-card__title {
        font-size: 30px;
    }

    .innate-post-grid__actions {
        margin-top: 28px;
    }

    .innate-post-grid__load-more {
        width: 100%;
    }
}

a.meta_comments {
    display: none !important;
}
i.fa.fa-comments {
    display: none;
}

/* my Css */

.wp-block-heading{
    font-size: 28px;
    font-weight: 700;
}