.blog__wrapper {
    position: relative;
    transition: opacity 0.25s ease;
    min-height: 240px;
}

.blog__wrapper.is-loading {
    opacity: 0.55;
    pointer-events: none;
    user-select: none;
}

.blog__wrapper .blog__loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 72px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 5;
}

.blog__wrapper.is-loading .blog__loader {
    opacity: 1;
}

.blog__loader--spinner {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(3, 81, 163, 0) 0%, #0351a3 90%);
    animation: gcs-spin 0.9s linear infinite;
    mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
}

.blog__loader--spinner::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: 5px;
    height: 5px;
    margin-top: -2.5px;
    margin-left: -5px;
    border-radius: 50%;
    background: #0351a3;
}

.blog__loader--label {
    margin-left: 14px;
    align-self: center;
    font-family: "Gantari", sans-serif;
    font-size: 1rem;
    color: #0351a3;
    font-weight: 600;
    letter-spacing: 0.02em;
    animation: gcs-pulse 1.4s ease-in-out infinite;
}

@keyframes gcs-spin {
    to { transform: rotate(360deg); }
}

@keyframes gcs-pulse {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}

.blog__wrapper .blog__item {
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.blog__wrapper .blog__item-enter {
    opacity: 0;
    transform: translateY(8px);
}

.blog__results-header {
    margin: 0 0 1.75rem;
    padding: 0.875rem 1.25rem;
    border-left: 4px solid #0351a3;
    background: #f4f8fd;
    border-radius: 4px;
    font-family: "Gantari", sans-serif;
    font-size: 1.0625rem;
    line-height: 1.5;
    color: #231F20;
}

.blog__results-header strong {
    color: #0351a3;
    font-weight: 700;
}

.blog__results-header em {
    font-style: normal;
    font-weight: 600;
    color: #00235D;
}

.blog__meta .blog__cat a {
    font-style: normal;
    font-weight: 600;
    color: #00235D;
    text-decoration: none;
    cursor: pointer;
}

.blog__meta .blog__cat a:hover,
.blog__meta .blog__cat a:focus {
    text-decoration: underline;
}

