/* Regulatory-acts ("მარეგულირებელი აქტები") page: page-cover header sizing + file-list card grid. */

.acts-cover {
    height: clamp(220px, 30vh, 320px);
}
.acts-cover__content {
    height: clamp(220px, 30vh, 320px);
    padding: 0 24px;
}
.acts-cover__title {
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.25;
    max-width: 900px;
}

.acts-faq .faq__title {
    justify-content: space-between;
    gap: 16px;
}
.acts-faq .faq__title > span:first-child {
    flex: 1;
}
.acts-faq__count {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 10px;
    border-radius: 100px;
    background: rgba(227, 45, 68, .1);
    color: var(--brand, #E32D44);
    font-size: 14px;
    margin-right: 20px;
}

.acts-files {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}
.acts-files__item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    color: #5A5A67;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.acts-files__item a:hover {
    border-color: var(--brand, #E32D44);
    background: rgba(227, 45, 68, .04);
    transform: translateY(-2px);
}
.acts-files__icon {
    flex-shrink: 0;
    color: var(--brand, #E32D44);
}
.acts-files__name {
    font-size: 15px;
    line-height: 1.35;
}

@media (max-width: 575px) {
    .acts-files {
        grid-template-columns: 1fr;
    }
    .acts-faq__count {
        margin-right: 0;
    }
}
