.my-results-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.46fr) minmax(0, 1fr);
    gap: 18px;
    margin-top: 22px;
    align-items: flex-start;
}

.my-results-layout--board {
    display: block;
}

.my-results-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.my-results-list__title {
    margin: 0 0 4px;
    color: #111827;
    font-size: 17px;
    font-weight: 600;
}

.my-results-list__items {
    display: flex;
    flex-direction: column;
}

.public-results-board {
    gap: 0;
}

.public-results-empty a,
.my-result-detail-actions .secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #008944;
    background: #ffffff;
    color: #008944;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.public-results-table {
    border-top: 2px solid #172033;
}

.public-results-table__row {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) 118px 150px;
    align-items: center;
    gap: 18px;
    min-height: 78px;
    padding: 0 15px;
    border-bottom: 1px solid #e1e7ed;
    background: #ffffff;
    color: #5f6b7a;
    font-size: 16px;
}

.public-results-table__row > * {
    min-width: 0;
}

.public-results-table__row--head {
    min-height: 52px;
    color: #7b8794;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.public-results-table__title {
    width: 100%;
    border: 0;
    background: transparent;
    color: #172033;
    font-size: 18px;
    line-height: 1.42;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

.public-results-table__category {
    font-weight: 500;
    text-align: center;
}

.public-results-table__date {
    color: #999999;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
}

.public-results-table__status,
.public-results-table__date {
    text-align: center;
}

.public-results-table__row:not(.public-results-table__row--head):hover {
    background: #f7fffb;
}

.public-results-table__title:hover,
.public-results-table__title:focus-visible {
    color: #008944;
    outline: none;
}

.results-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
}

.results-pagination button {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9e1e8;
    background: #ffffff;
    color: #4b5563;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.results-pagination button.is-active {
    border-color: #008944;
    background: #008944;
    color: #ffffff;
}

.results-pagination button:disabled {
    color: #b7c0ca;
    cursor: default;
}

.my-comments {
    display: grid;
    gap: 30px;
}

.my-comments-auth {
    display: grid;
    justify-items: start;
    gap: 16px;
    padding: 28px 24px;
    border: 1px solid #e1e7ed;
    background: #ffffff;
}

.my-comments-auth__message {
    margin: 0;
    color: #172033;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.my-comments-auth .primary-action {
    min-width: 168px;
    min-height: 48px;
    border: 1px solid #008944;
    border-radius: 0;
    background: #008944;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
}

.my-comments-auth .primary-action:hover,
.my-comments-auth .primary-action:focus-visible {
    background: #0b6b4f;
    border-color: #0b6b4f;
}

.my-comments-auth[hidden] {
    display: none;
}

.my-comments__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.my-comments__head h2 {
    margin: 0;
    color: #172033;
    font-size: 32px;
    line-height: 1.35;
    font-weight: 600;
}

.my-comments__head p {
    margin: 10px 0 0;
    color: #5f6b7a;
    font-size: 16px;
    line-height: 1.7;
}

.my-comments__tabs {
    display: flex;
    align-items: center;
    gap: 22px;
}

.my-comments__tabs button {
    position: relative;
    min-height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #5f6b7a;
    font: inherit;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

.my-comments__tabs button::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: transparent;
}

.my-comments__tabs button.active {
    color: #008944;
}

.my-comments__tabs button.active::after {
    background: #008944;
}

.my-comments-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 2px solid #12b886;
    border-bottom: 1px solid #e1e7ed;
}

.my-comments-summary article {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 22px;
    border-right: 1px solid #e1e7ed;
    background: #ffffff;
}

.my-comments-summary article:last-child {
    border-right: 0;
}

.my-comments-summary span {
    color: #667085;
    font-size: 14px;
    font-weight: 500;
}

.my-comments-summary strong {
    color: #172033;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
}

.my-comments-table {
    border-top: 2px solid #172033;
}

.my-comments-table__row {
    display: grid;
    grid-template-columns: 86px minmax(180px, 0.8fr) minmax(0, 1.25fr) 124px 82px;
    align-items: center;
    gap: 14px;
    min-height: 78px;
    padding: 0 15px;
    border-bottom: 1px solid #e1e7ed;
    background: #ffffff;
    color: #5f6b7a;
    font-size: 16px;
}

.my-comments-table__row > * {
    min-width: 0;
}

.my-comments-table__row--head {
    min-height: 52px;
    color: #7b8794;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.my-comments-table__type,
.my-comments-table__date,
.my-comments-table__delete {
    text-align: center;
}

.my-comments-table__type {
    color: #008944;
    font-weight: 600;
}

.my-comments-table__post {
    color: #172033;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.my-comments-table__post:hover,
.my-comments-table__post:focus-visible {
    color: #008944;
    outline: none;
}

.my-comments-table__content {
    margin: 0;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.65;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.my-comments-table__date {
    color: #999999;
    font-size: 15px;
    white-space: nowrap;
}

.my-comments-table__delete {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #d6dde5;
    background: #ffffff;
    color: #4b5563;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.my-comments-table__delete:hover,
.my-comments-table__delete:focus-visible {
    border-color: #0b6b4f;
    color: #0b6b4f;
    outline: none;
}

.my-comments-delete-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.44);
}

.my-comments-delete-modal__dialog {
    width: min(100%, 480px);
    display: grid;
    gap: 20px;
    padding: 30px;
    border: 1px solid #dce3ea;
    background: #ffffff;
}

.my-comments-delete-modal__head {
    display: grid;
    gap: 8px;
}

.my-comments-delete-modal__head span {
    color: #0b6b4f;
    font-size: 14px;
    font-weight: 700;
}

.my-comments-delete-modal__head h3 {
    margin: 0;
    color: #172033;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 600;
}

.my-comments-delete-modal__dialog p {
    margin: 0;
    color: #5f6b7a;
    font-size: 16px;
    line-height: 1.65;
}

.my-comments-delete-modal__target {
    display: grid;
    gap: 8px;
    padding: 18px 0;
    border-top: 1px solid #e1e7ed;
    border-bottom: 1px solid #e1e7ed;
}

.my-comments-delete-modal__target strong {
    color: #172033;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
}

.my-comments-delete-modal__target span {
    color: #667085;
    font-size: 15px;
    line-height: 1.65;
}

.my-comments-delete-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.my-comments-delete-modal__actions button {
    min-width: 104px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid #cfd8e3;
    background: #ffffff;
    color: #172033;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.my-comments-delete-modal__actions button:hover,
.my-comments-delete-modal__actions button:focus-visible {
    border-color: #0b6b4f;
    outline: none;
}

.my-comments-delete-modal__confirm {
    border-color: #0b6b4f !important;
    background: #0b6b4f !important;
    color: #ffffff !important;
}

.public-results-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 220px;
    text-align: center;
}

.public-results-empty strong {
    color: #111827;
    font-size: 18px;
    font-weight: 600;
}

.public-results-empty span {
    color: #667085;
    font-size: 15px;
}

.my-result-card {
    width: 100%;
    display: grid;
    gap: 7px;
    padding: 16px;
    border: 1px solid #e5e8eb;
    border-radius: 8px;
    background: #ffffff;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.my-result-card:hover,
.my-result-card:focus-visible {
    border-color: #008944;
    outline: none;
}

.my-result-card strong {
    font-size: 16px;
    line-height: 1.42;
}

.my-result-card span,
.my-result-card em,
.my-result-detail__header p,
.muted-text {
    color: #667085;
    font-size: 14px;
    font-style: normal;
}

.my-result-detail {
    min-height: 260px;
    padding: 20px;
    border: 1px solid #e5e8eb;
    border-radius: 8px;
    background: #ffffff;
}

.my-result-detail--full {
    min-height: 360px;
}

.my-result-detail-page .my-result-detail--full {
    min-height: 0;
    padding: 0;
    border: 0;
    border-top: 2px solid #172033;
    border-bottom: 1px solid #dfe6e3;
    border-radius: 0;
}

.my-result-detail-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.my-result-detail__header {
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e8eb;
}

.my-result-detail--full .my-result-detail__header {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 82px;
    padding: 20px 24px;
    border-bottom: 1px solid #dfe6e3;
}

.my-result-detail__header h2 {
    margin: 10px 0 0;
    font-size: 22px;
    line-height: 1.35;
}

.my-result-detail--full .my-result-detail__header h2 {
    margin: 0;
    color: #172033;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
}

.my-result-detail--full .my-result-detail__header .badge {
    flex: 0 0 auto;
    min-width: 74px;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #008944;
    background: #ffffff;
    color: #008944;
    font-size: 14px;
    font-weight: 700;
}

.my-result-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 16px 0;
}

.my-result-detail--full .my-result-meta {
    gap: 0;
    margin: 0;
    border-bottom: 1px solid #dfe6e3;
}

.my-result-meta div {
    padding: 13px;
    border-radius: 8px;
    background: #f7f9f8;
}

.my-result-detail--full .my-result-meta div {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 12px 18px;
    border-right: 1px solid #dfe6e3;
    border-radius: 0;
    background: #ffffff;
}

.my-result-detail--full .my-result-meta div:last-child {
    border-right: 0;
}

.my-result-meta dt {
    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

.my-result-detail--full .my-result-meta dt {
    color: #6b7280;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
}

.my-result-meta dd {
    margin: 5px 0 0;
    color: #172033;
    font-size: 14px;
    font-weight: 700;
}

.my-result-detail--full .my-result-meta dd {
    margin: 0;
    color: #172033;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.my-result-block {
    padding-top: 16px;
    border-top: 1px solid #eef1f4;
}

.my-result-detail--full .my-result-block {
    min-width: 0;
    min-height: 300px;
    padding: 30px 24px 34px;
    border-top: 0;
    border-bottom: 1px solid #dfe6e3;
}

.my-result-detail--full .my-result-block:last-child {
    min-height: 0;
}

.my-result-block h3 {
    margin: 0 0 8px;
    font-size: 17px;
}

.my-result-detail--full .my-result-block h3 {
    margin: 0 0 18px;
    color: #172033;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
}

.my-result-block p {
    margin: 0;
    color: #4b5563;
    white-space: pre-line;
}

.my-result-detail--full .my-result-block p {
    font-size: 16px;
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.my-result-rich-content {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.my-result-rich-content > :first-child {
    margin-top: 0;
}

.my-result-rich-content > :last-child {
    margin-bottom: 0;
}

.history-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.history-list li {
    padding: 12px;
    border-radius: 8px;
    background: #f7f9f8;
}

.history-list strong,
.history-list span,
.history-list em {
    display: inline-block;
    margin-right: 8px;
    font-size: 13px;
}

.history-list span {
    color: #667085;
}

.history-list em {
    color: #008944;
    font-style: normal;
    font-weight: 600;
}

html:has(.private-results-page),
body:has(.private-results-page) {
    max-width: 100%;
    overflow-x: hidden;
}

.private-results-lookup {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
    align-items: start;
}

.private-results-lookup__copy {
    display: grid;
    gap: 14px;
    max-width: 720px;
    padding-top: 0;
    text-align: center;
}

.private-results-lookup__copy span {
    color: #008944;
    font-size: 14px;
    font-weight: 700;
}

.private-results-lookup__copy h2 {
    margin: 0;
    color: #172033;
    font-size: 34px;
    line-height: 1.35;
    font-weight: 600;
}

.private-results-lookup__copy p {
    margin: 0;
    color: #5f6b7a;
    font-size: 17px;
    line-height: 1.8;
}

.private-results-form {
    width: 50%;
    display: grid;
    gap: 16px;
    padding: 28px;
    border: 1px solid #dfe6e3;
    border-radius: 8px;
    background: #ffffff;
}

.private-results-form label {
    display: grid;
    gap: 8px;
    color: #172033;
    font-size: 15px;
    font-weight: 700;
}

.private-results-form input {
    width: 100%;
    min-height: 52px;
    border: 1px solid #d6dde5;
    border-radius: 0;
    padding: 0 16px;
    color: #172033;
    font: inherit;
}

.private-results-form input:focus {
    border-color: #008944;
    outline: none;
}

.private-results-form__hint {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.6;
}

.private-results-form__feedback {
    margin: 0;
    color: #d92d20;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
    text-align: center;
}

.private-results-form__feedback.success {
    color: #008944;
}

.private-results-preview {
    display: grid;
    gap: 0;
    margin-top: 80px;
}

.private-results-preview[hidden] {
    display: none;
}

.private-results-preview__intro {
    display: grid;
    gap: 8px;
    padding-bottom: 22px;
    border-bottom: 2px solid #172033;
}

.private-results-preview__intro h2 {
    margin: 0;
    color: #172033;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 600;
}

.private-results-preview__intro p {
    margin: 0;
    color: #5f6b7a;
    font-size: 16px;
    line-height: 1.65;
}

.private-results-preview__intro strong {
    color: #008944;
    font-weight: 700;
}

.private-results-accordion {
    border-bottom: 1px solid #dfe6e3;
}

.private-results-item {
    border-bottom: 1px solid #dfe6e3;
    background: #ffffff;
}

.private-results-item:last-child {
    border-bottom: 0;
}

.private-results-preview__head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 82px;
    padding: 20px 24px;
    border: 0;
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.private-results-preview__head:hover,
.private-results-preview__head:focus-visible {
    background: #f7fffb;
    outline: none;
}

.private-results-preview__head i {
    flex: 0 0 auto;
    margin-left: auto;
    color: #7b8794;
    font-size: 20px;
    transition: transform 0.2s ease;
}

.private-results-preview__head[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.private-results-preview__title {
    min-width: 0;
    flex: 1 1 auto;
    margin: 0;
    color: #172033;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.private-results-preview__date {
    flex: 0 0 auto;
    color: #8a94a3;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.private-results-preview__status {
    flex: 0 0 auto;
    min-width: 74px;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #008944;
    color: #008944;
    font-size: 14px;
    font-weight: 700;
}

.private-results-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    border-bottom: 1px solid #dfe6e3;
}

.private-results-summary div {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 12px 18px;
    border-right: 1px solid #dfe6e3;
}

.private-results-summary div:last-child {
    border-right: 0;
}

.private-results-summary dt {
    color: #6b7280;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
}

.private-results-summary dd {
    margin: 0;
    color: #172033;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.private-results-summary div:first-child dd {
    color: #008944;
}

.private-results-item__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.private-results-item__panel.open {
    grid-template-rows: 1fr;
}

.private-results-item__panel-inner {
    min-height: 0;
    overflow: hidden;
    border-top: 1px solid #dfe6e3;
}

.private-results-content {
    min-width: 0;
    min-height: 0;
    padding: 30px 24px 34px;
    border-bottom: 1px solid #dfe6e3;
}

.private-results-content:last-child {
    border-bottom: 0;
}

.private-results-content h3 {
    margin: 0 0 18px;
    color: #172033;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
}

.private-results-content p {
    margin: 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.private-results-content__body {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.private-results-content__body > *:first-child {
    margin-top: 0;
}

.private-results-content__body > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .my-results-layout {
        grid-template-columns: 1fr;
    }

    .public-results-table {
        border-top-width: 1px;
    }

    .public-results-table__row,
    .public-results-table__row--head {
        grid-template-columns: 94px minmax(0, 1fr) 96px;
    }

    .public-results-table__row {
        min-height: 58px;
        gap: 12px;
        padding: 0 10px;
    }

    .public-results-table__row > *:nth-child(4) {
        display: none;
    }

    .my-comments__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .my-comments-table__row,
    .my-comments-table__row--head {
        grid-template-columns: 78px minmax(0, 1fr) 76px;
        grid-template-areas:
            "type post action"
            ". content action";
    }

    .my-comments-table__row {
        min-height: 70px;
        gap: 12px;
        padding: 14px 12px;
    }

    .my-comments-table__row > *:nth-child(1) {
        grid-area: type;
    }

    .my-comments-table__row > *:nth-child(2) {
        grid-area: post;
    }

    .my-comments-table__row > *:nth-child(3) {
        grid-area: content;
        white-space: normal;
    }

    .my-comments-table__row > *:nth-child(4) {
        display: none;
    }

    .my-comments-table__row > *:nth-child(5) {
        grid-area: action;
    }

    .my-comments-table__row--head {
        grid-template-areas: "type post action";
    }

    .my-comments-table__row--head > *:nth-child(3),
    .my-comments-table__row--head > *:nth-child(4) {
        display: none;
    }

    .my-result-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .private-results-lookup {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 24px;
    }

    .private-results-form {
        width: min(100%, 640px);
    }

}

@media (max-width: 768px) {
    .public-results-table {
        border-top-width: 2px;
    }

    .public-results-table__row--head {
        display: none;
    }

    .public-results-table__row {
        position: relative;
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "status"
            "title"
            "category"
            "date";
        align-items: start;
        gap: 8px;
        min-height: 0;
        padding: 18px 14px;
    }

    .public-results-table__row > *:nth-child(1) {
        grid-area: category;
        text-align: left;
    }

    .public-results-table__row > *:nth-child(2) {
        grid-area: title;
    }

    .public-results-table__row > *:nth-child(3) {
        grid-area: status;
        justify-self: start;
    }

    .public-results-table__row > *:nth-child(4) {
        grid-area: date;
        display: block;
        text-align: left;
    }

    .public-results-table__title {
        font-size: 16px;
        line-height: 1.45;
        white-space: normal;
    }

    .public-results-table__category,
    .public-results-table__date,
    .public-results-table__status {
        font-size: 14px;
    }

    .public-results-table__status {
        width: fit-content;
    }

    .private-results-form input {
        min-height: 46px;
        font-size: 14px;
    }

    .private-results-form {
        width: 100%;
    }

    .private-results-preview {
        margin-top: 56px;
    }

    .private-results-preview__head,
    .my-result-detail--full .my-result-detail__header {
        align-items: flex-start;
        min-height: 0;
        padding: 18px 16px;
    }

    .private-results-preview__head {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 8px 12px;
    }

    .private-results-preview__title {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 17px;
        white-space: normal;
    }

    .private-results-preview__date {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        font-size: 14px;
    }

    .private-results-preview__head i {
        grid-column: 3;
        grid-row: 1;
        align-self: center;
        margin-left: 0;
    }

    .private-results-summary,
    .my-result-detail--full .my-result-meta {
        grid-template-columns: 1fr;
    }

    .private-results-summary div,
    .my-result-detail--full .my-result-meta div {
        justify-content: flex-start;
        min-height: 0;
        padding: 14px 16px;
        border-right: 0;
        border-bottom: 1px solid #dfe6e3;
    }

    .private-results-summary div:last-child,
    .my-result-detail--full .my-result-meta div:last-child {
        border-bottom: 0;
    }

    .private-results-summary div:nth-child(4n) {
        border-right: 0;
    }

    .private-results-content,
    .my-result-detail--full .my-result-block {
        min-height: 220px;
        padding: 24px 16px 28px;
    }

    .my-comments__head h2 {
        font-size: 28px;
    }

    .my-comments__tabs {
        width: 100%;
        overflow-x: auto;
        gap: 18px;
        padding-bottom: 4px;
    }

    .my-comments-summary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .my-comments-summary article {
        min-height: 76px;
        flex-direction: column;
        gap: 6px;
        padding: 10px 12px;
    }

    .my-comments-table__row,
    .my-comments-table__row--head {
        grid-template-columns: 58px minmax(0, 1fr) 64px;
        gap: 10px;
    }

    .my-comments-table__post {
        font-size: 16px;
    }

    .my-comments-table__delete {
        min-height: 34px;
        padding: 0 10px;
        font-size: 13px;
    }

    .my-comments-delete-modal {
        align-items: flex-end;
        padding: 16px;
    }

    .my-comments-delete-modal__dialog {
        padding: 24px 20px;
    }

    .my-comments-delete-modal__head h3 {
        font-size: 21px;
    }

    .my-comments-delete-modal__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .private-results-form {
        padding: 22px 18px;
    }

    .private-results-lookup__copy h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .public-results-table__row {
        gap: 7px;
        padding: 16px 12px;
    }

    .public-results-table__row > *:nth-child(3) {
        text-align: left;
    }

    .my-comments-summary {
        grid-template-columns: 1fr;
    }

    .my-comments-summary article {
        min-height: 64px;
        border-right: 0;
        border-bottom: 1px solid #e1e7ed;
    }

    .my-comments-summary article:last-child {
        border-bottom: 0;
    }

    .my-result-meta {
        grid-template-columns: 1fr;
    }
}
