.ocaa-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 20px 60px;
}

/* ── Hero ── */
.ocaa-hero {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.ocaa-hero__avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.ocaa-title {
    font-size: 38px;
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 8px;
}

.ocaa-bio {
    margin: 0 0 6px;
    color: #444;
    font-size: 15px;
    line-height: 1.5;
    max-width: 600px;
}

.ocaa-url {
    font-size: 13px;
    color: #bf2640;
    text-decoration: none;
}
.ocaa-url:hover { text-decoration: underline; }

/* ── Sections ── */
.ocaa-section {
    margin: 0 0 44px;
}

.ocaa-section__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 18px;
}

.ocaa-section__title {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
}

.ocaa-section__desc {
    margin: 6px 0 0;
    color: #666;
    font-size: 14px;
}

/* ── Cards ── */
.ocaa-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ocaa-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.ocaa-card__link {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.ocaa-card__thumb img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.ocaa-card__body {
    padding: 16px;
    flex: 1;
}

.ocaa-card__meta {
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
}

.ocaa-card__title {
    font-size: 18px;
    line-height: 1.35;
    margin: 0;
}

.ocaa-empty {
    margin: 0;
    color: #777;
}

/* ── Load more ── */
.ocaa-load-more-wrap {
    margin-top: 20px;
    text-align: center;
}

.ocaa-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: opacity .15s;
}

.ocaa-load-more:hover { opacity: .8; }
.ocaa-load-more[disabled] { opacity: .45; cursor: default; }

/* ── Responsive ── */
@media (max-width: 980px) {
    .ocaa-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .ocaa-wrap  { padding: 24px 16px 48px; }
    .ocaa-title { font-size: 30px; }
    .ocaa-hero  { flex-direction: column; align-items: flex-start; gap: 16px; }
    .ocaa-cards { grid-template-columns: 1fr; }
}
