/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding: 10px 0;
}

.breadcrumb a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-hover);
}

.breadcrumb .separator {
    color: var(--text-muted);
    font-weight: 700;
}

.breadcrumb .current {
    color: var(--text-main);
    font-weight: 600;
}

/* Section Header with Inline Search */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.inline-search-form {
    margin: 0;
}

.inline-search-input {
    position: relative;
    display: flex;
    align-items: center;
}

.inline-search-input i {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.inline-search-input input {
    padding: 8px 12px 8px 35px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    width: 200px;
    transition: var(--transition);
}

.inline-search-input input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(60, 195, 104, 0.1);
}

.section-count {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .announcement-ticker {
        margin: -1.5rem -1.5rem 1rem -1.5rem;
    }
}

@media (max-width: 768px) {
    .announcement-ticker {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .header-right {
        width: 100%;
        justify-content: space-between;
    }

    .inline-search-input input {
        width: 150px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }
}