/* GHOST */

.kg-width-wide img {
    max-width: 85vw;
}
  
.kg-width-full img {
    max-width: 100vw;
}

.kg-image-card img {
    width: auto !important;
    height: auto !important;
    max-width: 100%;
}


/* POSTS */

.text-xl {
    font-size: 32px;
    font-weight: 600;
}

.text-upper {
    text-transform: uppercase;
}

.related-link, .related-link a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}


/* SUBSCRIBE */

.subscription-form .success-message, .subscription-form .error-message {
    display: none;
}

.subscription-form.error .error-message, .subscription-form.success .success-message {
    display: block;
}


/* SEARCH */

.post-main-search-wrapper {
    background-color: #fff;
    border: 1px solid #DDE1E5;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    padding: 10px;
    width: 100%;
    height: 50px;
}

.post-main-search-text {
    display: inline-block;
    color: #9CA3AF;
    margin-top: 4px;
}

.post-main-search-icon {
    position: absolute;
    right: 4px;
    top: 8px;
}

.post-pr-40 {
    padding-right: 40px !important;
}

.post-pl-40 {
    padding-left: 40px !important;
}


.target-box-blue {
    background-color: #00163E;
    border-radius: 14px;
    padding: 24px;
}


/* PAGING */

.sm-pagination {
    display: flex;
    grid-column: content;
    gap: 5px;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.sm-pagination-item {
    background-color: #fff;
    border: 1px solid #D9D9D9;
    text-align: center;
    border-radius: 6px;
    font-weight: 500;
    padding-right: 14px;
    padding-left: 14px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-left: 8px;
    min-width: 40px;
    cursor: pointer;
    color: #000;
}

.sm-pagination-item a {
    text-decoration: none;
    color: #000;
}

.sm-current, .sm-current a, .sm-current:hover {
    text-decoration: none;
    background-color: #082FFF;
    color: #fff !important;
}
  
.sm-prev {
    margin-inline-end: auto;
}
  
.sm-next {
    margin-inline-start: auto;
}
  
.sm-nav-disabled {
    opacity: 0.3;
}

@media (max-width: 480px) {
    .post-pr-40 {
        padding-right: 12px !important;
    }

    .post-pl-40 {
        padding-left: 12px !important;
    }
}

@media (min-width: 481px) and (max-width: 1024px) {
    .post-pr-40 {
        padding-right: 20px !important;
    }

    .post-pl-40 {
        padding-left: 20px !important;
    }
}