/* IBC Meeting Minutes Page */
.ibc-page__description {
    font-size: 1.05rem;
    color: #5a6a7a;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Search */
.ibc-search {
    margin-bottom: 32px;
}

.ibc-search__wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.ibc-search__icon {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    pointer-events: none;
}

.ibc-search__input {
    width: 100%;
    padding: 14px 48px 14px 48px;
    border: 2px solid #e8edf2;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    background: #f8fafb;
}

.ibc-search__input:focus {
    border-color: #0094da;
    box-shadow: 0 0 0 3px rgba(0, 148, 218, 0.1);
    background: #fff;
}

.ibc-search__input::placeholder {
    color: #94a3b8;
}

.ibc-search__clear {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ibc-search__clear:hover {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.08);
}

.ibc-search__count {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 8px;
    padding-left: 4px;
}

/* Resources List */
.ibc-resources {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ibc-resource {
    padding: 20px 24px;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    margin-bottom: 12px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ibc-resource:hover {
    border-color: #0094da;
    box-shadow: 0 4px 16px rgba(0, 148, 218, 0.08);
    transform: translateY(-1px);
}

.ibc-resource__main {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ibc-resource__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 148, 218, 0.08);
    border-radius: 8px;
    color: #0094da;
}

.ibc-resource__content {
    flex: 1;
    min-width: 0;
}

.ibc-resource__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a1a2e;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.ibc-resource__title:hover {
    color: #0094da;
}

.ibc-resource__external {
    opacity: 0.4;
    transition: opacity 0.2s;
}

.ibc-resource__title:hover .ibc-resource__external {
    opacity: 1;
}

.ibc-resource__desc {
    font-size: 0.9rem;
    color: #5a6a7a;
    margin-top: 4px;
    line-height: 1.5;
}

/* Empty / No Results */
.ibc-resources__empty,
.ibc-resources__no-results {
    text-align: center;
    color: #94a3b8;
    font-size: 1rem;
    padding: 48px 24px;
}

/* Hide animation for filtered items */
.ibc-resource.is-hidden {
    display: none;
}

/* Responsive */
@media (max-width: 600px) {
    .ibc-resource { padding: 16px; }
    .ibc-resource__main { gap: 12px; }
    .ibc-resource__icon { width: 32px; height: 32px; }
}
