.public-registration-shell {
    max-width: 1360px;
    align-items: start;
}

.public-registration-intro {
    position: sticky;
    top: 96px;
}

.public-registration-intro h1 {
    max-width: 560px;
}

.public-registration-benefits article {
    background: rgba(255,255,255,.08);
}

.public-registration-card {
    max-width: 820px;
}

.public-profile-choice label span {
    min-height: 86px;
}

.public-interest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.public-interest-grid label span {
    min-height: 112px;
}

.public-company-consent {
    display: block;
    margin-bottom: 16px;
}

.public-company-consent > span {
    min-height: 78px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 16px;
    border: 1px solid #cfd9e7;
    border-radius: 10px;
    background: #f7f9fc;
}

.public-company-consent input {
    position: absolute;
    opacity: 0;
}

.public-company-consent input:checked + span {
    color: #17346f;
    border-color: #d4aa1f;
    background: #fff7d7;
    box-shadow: 0 0 0 3px rgba(217,163,0,.1);
}

.public-company-consent strong,
.public-company-consent small {
    display: block;
}

.public-company-consent small {
    margin-top: 4px;
    color: var(--muted);
}

[data-profile-panel][hidden],
[data-profile-details][hidden] {
    display: none;
}

[data-profile-panel]:not([hidden]),
[data-profile-details]:not([hidden]) {
    animation: public-profile-in .16s ease-out;
}

@keyframes public-profile-in {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
    .public-registration-intro {
        position: static;
    }
}

@media (max-width: 720px) {
    .public-interest-grid {
        grid-template-columns: 1fr;
    }
}
