.container-tpsmo {
    max-width: 1100px;
    margin: 0 auto;
}

/* шапка */
.hero-tpsmo {
    background: linear-gradient(135deg, #ffffff 0%, #f5faff 100%);
    border-radius: 2rem;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2edf5;
}

.hero-tpsmo h1 {
    font-size: 1.9rem;
    font-weight: 700;
    background: linear-gradient(145deg, #145c8a, #0a3b57);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-tpsmo p {
    margin-top: 0.75rem;
    color: #2c5779;
    font-size: 1.25rem;
    line-height: 1.4;
    border-left: 4px solid #69a9d4;
    padding-left: 1rem;
}

.hero-tpsmo-image {
    text-align: center;
    margin: 1rem 0 0.5rem;
}

.hero-tpsmo-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* аккордеон */
.accordion-tpsmo {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.accordion-tpsmo-item {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.2s;
    border: 1px solid #e6f0f6;
}

.accordion-tpsmo-header {
    width: 100%;
    background: white;
    border: none;
    padding: 1.2rem 1.8rem;
    text-align: left;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
    color: #1f5272;
}

.accordion-tpsmo-header:hover {
    background: #f8fcfd;
}

.year-title-tpsmo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.year-number-tpsmo {
    font-size: 1.7rem;
    font-weight: 800;
    color: #0a5c8c;
}

.accordion-tpsmo-icon {
    font-size: 1.6rem;
    font-weight: 300;
    transition: transform 0.25s ease;
    color: #608fb0;
}

.accordion-tpsmo-item.active .accordion-tpsmo-icon {
    transform: rotate(180deg);
}

.accordion-tpsmo-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border-top: 0px solid #eef3f9;
}

.accordion-tpsmo-item.active .accordion-tpsmo-panel {
    max-height: 2000px; /* достаточно для длинных списков */
    border-top-width: 1px;
}

.doc-list-tpsmo {
    padding: 0.8rem 1.8rem 1.8rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.doc-card-tpsmo {
    background: #fafeff;
    border-radius: 1rem;
    border: 1px solid #e2edf2;
    transition: all 0.15s;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
}

.doc-card-tpsmo:hover {
    background: #f2f9ff;
    border-color: #bdd9ec;
}

.doc-info-tpsmo {
    flex: 3;
    min-width: 220px;
}

.doc-number-tpsmo {
    font-weight: 700;
    font-family: 'SF Mono', monospace;
    background: #e9f0f7;
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 30px;
    font-size: 1.1rem;
    color: #1c628b;
    margin-right: 0.7rem;
    letter-spacing: -0.2px;
}

.doc-name-tpsmo {
    font-size: 1.32rem;
    line-height: 1.4;
    color: #1c445e;
    word-break: break-word;
}

.download-btn-tpsmo {
    background: #eef3fa;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e6a96;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.download-btn-tpsmo:hover {
    background: #cfe3f2;
    color: #0c4a6e;
    transform: translateY(-1px);
}

.download-icon-tpsmo {
    font-size: 1.1rem;
    font-weight: bold;
}

/* для ссылок если нужен fallback как кнопка */
.footer-note-tpsmo {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.95rem;
    color: #6f8faa;
    border-top: 1px solid #d4e2ec;
    padding-top: 1.5rem;
}

@media (max-width: 680px) {
    .accordion-tpsmo-header {
        padding: 1rem 1.2rem;
        font-size: 1.2rem;
    }
    .year-number-tpsmo {
        font-size: 1.3rem;
    }
    .doc-list-tpsmo {
        padding: 0.8rem 1rem 1.5rem 1rem;
    }
    .doc-card-tpsmo {
        flex-direction: column;
        align-items: flex-start;
    }
    .download-btn-tpsmo {
        align-self: flex-start;
        margin-top: 0.2rem;
    }
    .hero-tpsmo h1 {
        font-size: 1.5rem;
    }
}