.orinox-du-an-wrap {
    width: 100%;
}

/* Category Filter Bar - Synced with Header Phone Button Style & Brand Gold Color */
.orinox-du-an-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.orinox-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: #fffdf5;
    color: #8c6621;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.4;
    border-radius: 99px;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
    border: 1px solid #f3e5ab;
    cursor: pointer;
    outline: none;
    user-select: none;
    white-space: nowrap;
}

.orinox-filter-btn:hover {
    background: linear-gradient(135deg, #e6b839 0%, #8c6621 100%);
    color: #ffffff;
    border-color: #8c6621;
    box-shadow: 0 4px 14px rgba(140, 102, 33, 0.3);
    transform: translateY(-2px);
}

.orinox-filter-btn.active {
    background: linear-gradient(135deg, #d9a726 0%, #8c6621 100%);
    color: #ffffff;
    border-color: #8c6621;
    box-shadow: 0 4px 14px rgba(140, 102, 33, 0.35);
    font-weight: 700;
    transform: translateY(-2px);
}

.orinox-no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    font-size: 15px;
    color: #8c6621;
}

.orinox-du-an-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.orinox-du-an-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.orinox-du-an-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.orinox-du-an-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.orinox-du-an-card__thumb {
    height: 420px;
    overflow: hidden;
    background: #f3f3f3;
    position: relative;
}

.orinox-du-an-card__thumb img {
    display: block;
    width: 100%;
    height: auto;
    transform: translateY(0);
    will-change: transform;
}

.orinox-du-an-card__content {
    padding: 16px 18px 22px;
}

.orinox-du-an-card__cat {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: #8c6621;
    text-align: center;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orinox-du-an-card__title {
    margin: 0;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
}

.orinox-load-status {
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: #8c6621;
    font-weight: 500;
}

.orinox-load-trigger {
    width: 100%;
    height: 10px;
}

@media (max-width: 1200px) {
    .orinox-du-an-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 849px) {
    .orinox-du-an-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .orinox-du-an-card__thumb {
        height: 360px;
    }

    .orinox-du-an-card__title {
        font-size: 20px;
    }

    .orinox-filter-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
}

@media (max-width: 549px) {
    .orinox-du-an-grid {
        grid-template-columns: 1fr;
    }

    .orinox-du-an-card__thumb {
        height: 300px;
    }

    .orinox-du-an-card__title {
        font-size: 18px;
    }
}