.tlk-archive {
    padding: 35px 0 50px;
}

.tlk-layout {
    display: grid;
    grid-template-columns: 275px minmax(0, 1fr);
    gap: 35px;
    align-items: start;
}

.tlk-sidebar {
    border-bottom:1px solid #ddd;
}

.tlk-filter-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 22px;
    border: 0;
    background: transparent;
    color: #111;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

.tlk-filter-caret {
    color: #9aa1a8;
    font-size: 18px;
}

.tlk-check {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 12px;
    font-size: 14px;
    cursor: pointer;
}

.tlk-check input {
    width: 13px;
    height: 13px;
    margin: 0;
}

.tlk-more,
.tlk-clear,
.tlk-selected-item {
    border: 0;
    background: transparent;
    color: #f47a20;
    font-size: 13px;
    padding: 0;
    text-transform: none;
}

.tlk-selected {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 5px 12px;
    margin-bottom: 18px;
    color: #7a7f88;
    font-size: 14px;
	align-items:center
}

.tlk-selected[hidden] {
    display: none;
}

.tlk-back {
    font-size: 24px;
    line-height: 0;
    vertical-align: -2px;
}

.tlk-selected-list {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.tlk-selected-item {
    color: #173b73;
    font-size: 14px;
}

.tlk-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.tlk-view-switch {
    display: inline-flex;
    gap: 11px;
}

.tlk-view-btn {
    border: 0;
    background: transparent;
    color: #a8adb2;
    padding: 0;
    min-height: auto;
    line-height: 1;
	font-size:18px;
}

.tlk-view-btn.active {
    color: #173b73;
}

.tlk-sort {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #111;
    font-size: 14px;
}

.tlk-sort select {
    width: 155px;
    height: 34px;
    margin: 0;
    border-color: #e4e4e4;
    color: #111;
    font-size: 14px;
}

.tlk-results-wrap {
    position: relative;
    min-height: 180px;
}

.tlk-layout.is-loading .tlk-results-wrap {
    opacity: .55;
    pointer-events: none;
}

.tlk-results {
    display: grid;
    gap: 28px 14px;
}

.tlk-view-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tlk-shortcode .tlk-view-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tlk-card {
    background: #fbf9f9;
    border: 1px solid #f2eeee;
}

.tlk-thumb {
    position: relative;
    display: block;
    margin: 18px 16px 0;
    background: #f5f5f5;
    border: 1px solid #efefef;
    overflow: hidden;
}

.tlk-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: opacity .2s ease, transform .2s ease;
}

.tlk-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 135px;
    padding: 20px;
    color: #006cbd;
    font-weight: 700;
    text-align: center;
}

.tlk-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    transition: opacity .2s ease;
}

.tlk-thumb-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    min-height: 38px;
    padding: 0 16px;
    background: var(--primary-color, #0057bd);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .2s ease;
}

.tlk-thumb:hover::after,
.tlk-thumb:hover .tlk-thumb-btn {
    opacity: 1;
}

.tlk-thumb:hover img {
    transform: scale(1.02);
}

.tlk-card-body {
    padding: 20px 16px 28px;
}

.tlk-card-title {
    margin: 0 0 22px;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
}

.tlk-card-title a {
    color: inherit;
}

.tlk-contact {
    margin-bottom: 8px;
    color: #f47a20;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.tlk-updated {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 17px;
    color: #858b92;
    font-size: 13px;
    font-style: italic;
}

.tlk-updated i {
    color: #0057bd;
    font-style: normal;
}

.tlk-meta {
    color: #111;
    font-size: 14px;
    line-height: 1.55;
}

.tlk-detail-btn {
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    background: #f47a20;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 15px;
}

.tlk-detail-btn:hover {
    color: #fff;
    background: #173b73;
}

.tlk-view-list {
    grid-template-columns: 1fr;
    gap: 30px;
}

.tlk-view-list .tlk-card {
    display: grid;
    grid-template-columns: 265px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
    border: 0;
    background: transparent;
}

.tlk-view-list .tlk-thumb {
    margin: 0;
}

.tlk-view-list .tlk-card-body {
    padding: 0;
}

.tlk-view-list .tlk-card-title {
    font-size: 17px;
}

.tlk-view-list .tlk-updated {
    display: none;
}

.tlk-view-list .tlk-detail-btn {
    display: inline-flex;
}

.tlk-empty,
.tlk-no-terms {
    color: #777;
}

.tlk-single {
    padding: 35px 0 50px;
}

.tlk-single-top {
    align-items: flex-start;
    margin-bottom: 24px;
}

.tlk-single-image img {
    display: block;
    width: 100%;
    height: auto;
}

.tlk-single-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 270px;
    padding: 24px;
    background: #f5f5f5;
    color: #0057bd;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.tlk-single-info {
    padding-top: 36px;
}

.tlk-single-title {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
}

.tlk-single-meta {
    margin-bottom: 42px;
    color: #4c5662;
    font-size: 14px;
    line-height: 1.45;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.tlk-single-label {
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
    color: #111;
    font-size: 14px;
    font-weight: 700;
}

.tlk-single-btn {
    min-width: 96px;
    min-height: 36px;
    margin: 0;
    background: #172238;
    border-color: #172238;
    font-size: 12px;
    font-weight: 700;
}

.tlk-single-btn:hover {
    background: #0057bd;
    border-color: #0057bd;
}

.tlk-single-content {
    margin-top: 18px;
}

@media only screen and (max-width: 48em) {
    .tlk-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tlk-toolbar {
        gap: 18px;
        align-items: flex-start;
    }

    .tlk-view-grid {
        grid-template-columns: 1fr;
    }

    .tlk-shortcode .tlk-view-grid {
        grid-template-columns: 1fr;
    }

    .tlk-view-list .tlk-card {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tlk-view-list .tlk-card-title {
        margin-bottom: 24px;
    }

    .tlk-sort select {
        width: 135px;
    }

    .tlk-single-title {
        font-size: 22px;
    }

    .tlk-single-info {
        padding-top: 0;
    }

    .tlk-single-meta {
        margin-bottom: 24px;
    }
}

@media only screen and (min-width: 48.001em) and (max-width: 849px) {
    .tlk-shortcode .tlk-view-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
