.aspects-page {
    max-width: 1180px;
}

.aspect-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.aspect-card {
    min-height: 210px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(15, 104, 132, 0.88);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(9, 65, 83, 0.14);
    transition: 0.18s ease;
}

.aspect-card:hover {
    transform: translateY(-1px);
    background: rgba(17, 128, 164, 0.92);
}

.aspect-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.aspect-card-header p {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 800;
}

.aspect-card-header h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.18;
}

.aspect-card-header > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 14px;
    font-weight: 900;
}

.aspect-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.aspect-stats div {
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
}

.aspect-stats span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
}

.aspect-stats strong {
    font-size: 20px;
    font-weight: 900;
}

.aspect-action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.aspect-action a:hover {
    background: rgba(255, 255, 255, 0.28);
}

@media (max-width: 1100px) {
    .aspect-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .aspect-grid {
        grid-template-columns: 1fr;
    }

    .aspect-card {
        min-height: auto;
    }
}