/* searchieves.com - Slate & Ember editorial theme */

.animate-this {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.animate-this.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Category rail */
.category-rail {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}
.category-rail::-webkit-scrollbar { display: none; }
.category-chip {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(64,73,105,.2);
    background: #fff;
    font-weight: 600;
    font-size: 13px;
    color: #404969;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
}
.category-chip:hover, .category-chip.active {
    border-color: #DC552C;
    background: #DC552C;
    color: #fff;
}

/* preloader */
.preloader-inline { display:flex; justify-content:center; padding:30px 0; }
.spin {
    width: 32px; height: 32px;
    border: 3px solid rgba(64,73,105,.15);
    border-top-color: #DC552C;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Editorial feature cards (matches ajaxList markup: .businesscard > .w-100 > img.aks + h3 + p + .d-flex) */
.businesscard {
    background: #fff;
    border-bottom: 3px solid transparent;
    transition: border-color .25s ease, transform .25s ease;
    position: relative;
}
.businesscard:hover {
    border-color: #DC552C;
    transform: translateY(-3px);
}
.businesscard img.aks,
.businesscard img.img-fluid {
    width: 100%;
    height: 190px;
    object-fit: cover;
    background: #FBF7F1;
    color: transparent;
    font-size: 0;
}
.businesscard h3 {
    font-family: "Newsreader", serif;
    font-size: 20px;
    font-weight: 600;
    color: #26293C;
}
.businesscard a:hover h3 {
    color: #DC552C;
}
.businesscard p {
    font-size: 13px;
    color: #6B6E85;
}
.businesscard .open {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    background: #DC552C;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    padding: 4px 10px;
    border-radius: 4px;
}
.businesscard .btn {
    background: #26293C;
    color: #fff !important;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
}
.businesscard .btn-sec {
    border-radius: 999px;
}

/* Feature index number */
.feature-index {
    font-family: "Newsreader", serif;
    font-style: italic;
    font-size: 42px;
    color: rgba(220,85,44,.25);
    line-height: 1;
}

/* Tabs (how it works) */
.tabs-wrapper input[type="radio"] { display: none; }
.tabs-wrapper .tab-labels { display: flex; gap: 10px; flex-wrap: wrap; }
.tabs-wrapper .tab-labels label {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid #404969;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    color: #404969;
    transition: all .2s ease;
}
.tabs-wrapper .tab-panel { display: none; }
#tab1:checked ~ .tab-labels label[for="tab1"],
#tab2:checked ~ .tab-labels label[for="tab2"],
#tab3:checked ~ .tab-labels label[for="tab3"] {
    background: #404969;
    color: #fff;
}
#tab1:checked ~ .tab-panels #panel1,
#tab2:checked ~ .tab-panels #panel2,
#tab3:checked ~ .tab-panels #panel3 {
    display: block;
}

/* Blog content prose */
.blog-content { font-size: 15px; line-height: 1.8; color: #26293C; }
.blog-content p { margin-bottom: 1em; }
.blog-content img { max-width: 100%; border-radius: 12px; margin: 1em 0; }
.blog-content h2, .blog-content h3 { font-family: "Newsreader", serif; margin: 1.2em 0 .5em; }
.blog-content ul, .blog-content ol { margin: 0 0 1em 1.4em; }
