.osa-container {
    background: #fff;
    margin: 30px auto;
    padding: 15px;
    border-radius: 15px;
}

.osa-dir-table {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 14px;
    text-align:initial;
}

.osa-dir-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.osa-dir-desc {
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 16px;
    color: #244e54;
}

.osa-dir-row {
    background: #f4f7f8;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.osa-album-count {
    font-size: 13px;
    opacity: .7;
}
.osa-album-count-number {
    font-weight: 700;
    color: #1f9ca7; /* لونك الأساسي */
}

.osa-album-count-label {
    font-size: 13px;
    opacity: .7;
}

.osa-album-card {
    background: #f3f9fa;
    border-radius: 14px;
    padding: 14px 16px;
    transition: transform .15s ease, background .15s ease;
}



.osa-album-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.osa-album-name {
    font-size: 16px;
    font-weight: 700;
    color: #0f3f45;
}

.osa-album-meta {
    display: flex;
    gap: 6px;
    align-items: baseline;
    color: #09666f;
    font-weight: 500;
    font-size: 16px;
}

span.osa-album-label {
    font-weight: 500;
    color: #ffffff;
    background: #75b7c1;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 7px;
}




.osa-album-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e8f3f5;
    border-radius: 10px;
    padding: 12px;
}

.osa-album-right{
    display:flex;
    align-items:center;
    gap:8px;
}

.osa-album-prefix{
    opacity:.7;
}

.osa-album-name{
    font-weight:600;
    text-decoration:none;
    color:#2a7b8a;
}

.osa-album-name:hover{
    color:#1f9ca7;
}

.osa-album-year {
    font-weight: 600;
    font-size: 11px;
    color: #ce754a;
    background: #fdffff;
    padding: 0px 4px;
    border-radius: 5px;
    box-shadow: 0px 1px 1px #7b7b7b;
}

.osa-album-left {
    font-weight: 500;
    color: #16757d;
    font-size: 13px;
}


.osa-album-sort{
    display:flex;
    justify-content:center;   /* التوسيط الحقيقي */
    align-items:center;
    gap:14px;
    margin:35px 0 45px;
}
.osa-container{
    text-align:center;
}
/* زر عام */
.osa-sort-btn {
    padding: 5px 15px;
    border: 0px solid #e1d7c7;
    border-radius: 18px;
    background: #f2f2f2;
    font-size: 16px;
    font-weight: 600;
    color: #716553;
    transition: .2s ease;
    cursor: pointer;
    margin: 0 0 24px 0;
}

/* إزالة إطار التركيز الأزرق */
.osa-sort-btn:focus{
    outline:none;
    box-shadow:none;
}

/* Hover */
.osa-sort-btn:hover{
    background:#2f949a;
    color:#fff;
    border-color:#2f949a;
}

/* الزر النشط (الأحدث افتراضي) */
.osa-sort-btn.active {
    background: #99c0c6;
    color: #ffffff;
    border-color: #2f949a;
}
.osa-breadcrumb{
  text-align:right;
  margin-bottom:15px;
  font-size:14px;
  color:#6b7c80;
}

.osa-breadcrumb a{
  color:#1f9ca7;
  text-decoration:none;
  font-weight:600;
}

.osa-breadcrumb .sep{
  margin:0 6px;
  color:#9aaeb3;
}