.ar-wrap, .ar-wrap * { box-sizing: border-box; }

.ar-wrap {
    font-family: 'Roboto', sans-serif;
    width: 100%;
}

.ar-filter-wrap {
    margin-bottom: clamp(16px, 2vw, 24px);
    max-width: 320px;
}

.ar-year-select {
    width: 100%;
    padding: clamp(10px, 1.4vw, 14px) clamp(36px, 4vw, 44px) clamp(10px, 1.4vw, 14px) clamp(14px, 2vw, 20px);
    border: none;
    border-radius: 8px;
    background: #1D4D5E0D;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(14px, 1.2vw, 16px);
    color: #0E262E;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'><path d='M6 9l6 6 6-6' stroke='%230E262E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right clamp(18px, 2.5vw, 28px) center;
}

.ar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(12px, 1.6vw, 16px);
}

.ar-item {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.2vw, 12px);
    border: 1px solid #1D4D5E;
    border-radius: 16px;
    padding: clamp(18px, 2.6vw, 32px);
    background: #fff;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: box-shadow .2s ease;
    font-family: 'Roboto', sans-serif;
}

.ar-item:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.ar-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.ar-icon-img {
    width: clamp(18px, 1.8vw, 22px);
    height: clamp(18px, 1.8vw, 22px);
    display: block;
}

.ar-title {
    flex: 1 1 auto;
    font-weight: 500 !important;
    font-size: clamp(14px, 1.8vw, 32px);
    color: #101010;
}

.ar-open {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #F58232;
    font-weight: 500 !important;
    font-size: clamp(12px, 1.1vw, 14px);
    white-space: nowrap;
}

.ar-empty {
    text-align: center;
    color: #888;
    margin: clamp(20px, 3vw, 30px) 0;
}

.ar-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.ar-modal-overlay.active {
    display: flex;
}

.ar-modal-box {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 85vh;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.ar-modal-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.ar-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: #fff;
    border: none;
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1;
    cursor: pointer;
    color: #333;
    z-index: 10;
}

@media (max-width: 700px) {
    .ar-grid {
        grid-template-columns: 1fr;
    }
}