    .pda-page {
        min-height: 650px;
        padding-bottom: 65px;
        background: #f7f7f7;
    }

    .pda-banner::before {
        position: absolute;
        content: "";
        inset: 0;
        background: linear-gradient(90deg, rgba(17, 24, 39, 0.82) 0%, rgba(17, 24, 39, 0.62) 55%, rgba(17, 24, 39, 0.32) 100%);
    }

    .pda-banner::after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        height: 4px;
        content: "";
        background: #f59e0b;
    }

    .pda-banner__content {
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 52px 0 58px;
    }

    .pda-banner__label {
        display: inline-block;
        margin-bottom: 12px;
        color: #fbbf24;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }

    .pda-banner__title {
        max-width: 720px;
        margin: 0;
        color: #ffffff;
        font-size: 40px;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: -0.4px;
    }

    .pda-banner__description {
        max-width: 620px;
        margin: 14px 0 0;
        color: rgba(255, 255, 255, 0.86);
        font-size: 15px;
        line-height: 1.7;
    }

    .pda-content {
        position: relative;
        z-index: 3;
        margin-top: -30px;
    }

    .pda-filter {
        margin-bottom: 30px;
        padding: 22px;
        border: 1px solid #e7e7e7;
        border-radius: 10px;
        background: #ffffff;
        box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
    }

    .pda-filter__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 18px;
    }

    .pda-filter__title-wrapper {
        display: flex;
        align-items: center;
        gap: 11px;
    }

    .pda-filter__icon {
        display: flex;
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #fff7ed;
        color: #ea7600;
    }

    .pda-filter__icon svg {
        width: 18px;
        height: 18px;
    }

    .pda-filter__title {
        margin: 0 0 2px;
        color: #202735;
        font-size: 16px;
        font-weight: 700;
    }

    .pda-filter__text {
        margin: 0;
        color: #7a8190;
        font-size: 13px;
    }

    .pda-filter__count {
        display: inline-flex;
        align-items: center;
        padding: 7px 12px;
        border-radius: 6px;
        background: #f4f4f4;
        color: #525866;
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;
    }

    .pda-filter__form {
        display: grid;
        align-items: end;
        grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) auto;
        gap: 14px;
    }

    .pda-form-group {
        margin: 0;
    }

    .pda-form-label {
        display: block;
        margin-bottom: 7px;
        color: #444b57;
        font-size: 12px;
        font-weight: 600;
    }

    .pda-custom-select {
        position: relative;
    }

    .pda-custom-select__button {
        display: flex;
        width: 100%;
        height: 48px;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 0 14px;
        border: 1px solid #dfe3e8;
        border-radius: 10px;
        outline: none;
        background: #ffffff;
        color: #303744;
        font-size: 14px;
        font-weight: 500;
        text-align: left;
        cursor: pointer;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }

    .pda-custom-select__button:hover {
        border-color: #f1b45a;
        background: #fffdf9;
    }

    .pda-custom-select.is-open .pda-custom-select__button,
    .pda-custom-select__button:focus-visible {
        border-color: #f59e0b;
        box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
    }

    .pda-custom-select__value {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .pda-custom-select__arrow {
        display: flex;
        width: 28px;
        height: 28px;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        border-radius: 7px;
        background: #fff7ed;
        color: #dd7200;
        transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .pda-custom-select.is-open .pda-custom-select__arrow {
        transform: rotate(180deg);
        background: #ffedd5;
    }

    .pda-custom-select__arrow svg {
        width: 16px;
        height: 16px;
    }

    .pda-custom-select__menu {
        position: absolute;
        z-index: 30;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        max-height: 292px;
        margin: 0;
        padding: 8px;
        overflow-y: auto;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 40px rgba(17, 24, 39, 0.14);
        list-style: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
        backdrop-filter: blur(12px);
    }

    .pda-custom-select.is-open .pda-custom-select__menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .pda-custom-select__option {
        display: flex;
        width: 100%;
        min-height: 40px;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 9px 11px;
        border: 0;
        border-radius: 8px;
        background: transparent;
        color: #3d4654;
        font-size: 13px;
        font-weight: 500;
        text-align: left;
        cursor: pointer;
        transition: background-color 0.16s ease, color 0.16s ease;
    }

    .pda-custom-select__option:hover,
    .pda-custom-select__option:focus-visible {
        outline: none;
        background: #fff7ed;
        color: #cf6700;
    }

    .pda-custom-select__option.is-selected {
        background: #fff3df;
        color: #c55f00;
        font-weight: 700;
    }

    .pda-custom-select__check {
        width: 18px;
        height: 18px;
        opacity: 0;
    }

    .pda-custom-select__option.is-selected .pda-custom-select__check {
        opacity: 1;
    }

    .pda-reset-button {
        display: inline-flex;
        height: 44px;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 0 18px;
        border: 1px solid #dfe1e5;
        border-radius: 7px;
        background: #ffffff;
        color: #4b525f;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
        cursor: pointer;
        transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .pda-reset-button:hover {
        border-color: #f59e0b;
        background: #fffaf2;
        color: #d96e00;
    }

    .pda-reset-button svg {
        width: 16px;
        height: 16px;
    }

    .pda-list {
        margin-right: -12px;
        margin-left: -12px;
    }

    .pda-item {
        display: flex;
        margin-bottom: 24px;
        padding-right: 12px;
        padding-left: 12px;
    }

    .pda-card {
        width: 100%;
        overflow: hidden;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        background: #ffffff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.045);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .pda-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
    }

    .pda-card__cover-link {
        position: relative;
        display: block;
        overflow: hidden;
        background: #e9e9e9;
        aspect-ratio: 3 / 4;
    }

    .pda-card__cover {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.35s ease;
    }

    .pda-card:hover .pda-card__cover {
        transform: scale(1.025);
    }

    .pda-card__overlay {
        position: absolute;
        display: flex;
        align-items: flex-end;
        padding: 20px;
        inset: 0;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 30%, rgba(15, 23, 42, 0.36) 58%, rgba(15, 23, 42, 0.93) 100%);
    }

    .pda-card__content {
        width: 100%;
    }

    .pda-card__type {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 10px;
        padding: 5px 9px;
        border-radius: 5px;
        background: rgba(255, 255, 255, 0.16);
        color: rgba(255, 255, 255, 0.92);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.3px;
        text-transform: uppercase;
    }

    .pda-card__type svg {
        width: 12px;
        height: 12px;
    }

    .pda-card__title {
        margin: 0 0 13px;
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.4;
    }

    .pda-card__meta {
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.19);
    }

    .pda-card__meta-row {
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 10px;
        margin-bottom: 7px;
        font-size: 12px;
        line-height: 1.4;
    }

    .pda-card__meta-row:last-child {
        margin-bottom: 0;
    }

    .pda-card__meta-label {
        color: rgba(255, 255, 255, 0.68);
    }

    .pda-card__meta-value {
        color: #ffffff;
        font-weight: 500;
        overflow-wrap: anywhere;
        text-align: right;
    }

    .pda-card__open {
        position: absolute;
        top: 14px;
        right: 14px;
        display: flex;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        border-radius: 7px;
        background: rgba(17, 24, 39, 0.58);
        color: #ffffff;
        opacity: 0;
        transform: translateY(-4px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .pda-card:hover .pda-card__open {
        opacity: 1;
        transform: translateY(0);
    }

    .pda-card__open svg {
        width: 17px;
        height: 17px;
    }

    .pda-empty {
        display: none;
        padding: 55px 20px;
        border: 1px solid #e4e6e9;
        border-radius: 10px;
        background: #ffffff;
        text-align: center;
    }

    .pda-empty.is-visible {
        display: block;
    }

    .pda-empty__icon {
        display: inline-flex;
        width: 60px;
        height: 60px;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        border-radius: 50%;
        background: #fff7ed;
        color: #e57b00;
    }

    .pda-empty__icon svg {
        width: 27px;
        height: 27px;
    }

    .pda-empty__title {
        margin: 0 0 7px;
        color: #252c38;
        font-size: 18px;
        font-weight: 700;
    }

    .pda-empty__text {
        max-width: 430px;
        margin: 0 auto;
        color: #7c8390;
        font-size: 14px;
        line-height: 1.65;
    }

    @media (max-width: 991.98px) {
        .pda-banner__title {
            font-size: 35px;
        }

        .pda-filter__form {
            grid-template-columns: 1fr 1fr;
        }

        .pda-reset-button {
            grid-column: 1 / -1;
        }
    }

    @media (max-width: 767.98px) {
        .pda-page {
            padding-bottom: 45px;
        }

        .pda-banner {
            min-height: 220px;
            margin-top: -15px;
        }

        .pda-banner::before {
            background: rgba(17, 24, 39, 0.72);
        }

        .pda-banner__content {
            padding: 43px 0 50px;
            text-align: center;
        }

        .pda-banner__title {
            margin-right: auto;
            margin-left: auto;
            font-size: 30px;
        }

        .pda-banner__description {
            margin-right: auto;
            margin-left: auto;
            font-size: 14px;
        }

        .pda-content {
            margin-top: -24px;
        }

        .pda-filter {
            padding: 18px;
        }

        .pda-filter__top {
            align-items: flex-start;
            flex-direction: column;
            gap: 12px;
        }

        .pda-filter__form {
            grid-template-columns: 1fr;
        }

        .pda-reset-button {
            width: 100%;
            grid-column: auto;
        }
    }

    @media (max-width: 575.98px) {
        .pda-banner__title {
            font-size: 27px;
        }

        .pda-banner__description {
            line-height: 1.6;
        }

        .pda-card__title {
            font-size: 17px;
        }

        .pda-item {
            padding-right: 15px;
            padding-left: 15px;
        }

        .pda-list {
            margin-right: -15px;
            margin-left: -15px;
        }
    }