.dictionary-main {
    min-height: 68vh;
    padding: 0 0 24px;
    color: #263238;
    background: #ffffff;
}

.content-panel .dictionary-landing-intro {
    max-width: 760px;
    margin: 0 0 24px;
    color: #555555;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}

.dictionary-section-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.content-panel a.dictionary-section-card,
.content-panel a.dictionary-section-card:hover,
.content-panel a.dictionary-section-card:focus,
.dictionary-section-card,
.dictionary-section-card:hover,
.dictionary-section-card:focus {
    text-decoration: none;
}

.dictionary-section-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    min-height: 118px;
    padding: 20px;
    border: 1px solid #eceff1;
    border-radius: 12px;
    color: inherit;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(38, 50, 56, 0.04);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.dictionary-section-card:hover,
.dictionary-section-card:focus {
    border-color: rgba(150, 88, 185, 0.35);
    box-shadow: 0 14px 34px rgba(38, 50, 56, 0.08);
    transform: translateY(-2px);
}

.dictionary-section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #7b4397;
    background: rgba(150, 88, 185, 0.11);
    font-size: 22px;
}

.dictionary-section-content {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.dictionary-section-content strong {
    color: #111111;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
}

.dictionary-section-content span {
    color: #607d8b;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
}

.dictionary-section-arrow {
    color: #9658b9;
    font-size: 16px;
    opacity: 0.7;
}

.dictionary-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0 8px;
    color: #7b4397;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
}

.dictionary-back-link,
.dictionary-back-link:hover,
.dictionary-back-link:focus,
.content-panel .dictionary-back-link,
.content-panel .dictionary-back-link:hover,
.content-panel .dictionary-back-link:focus {
    text-decoration: none;
}

.dictionary-back-link + .dictionary-panel {
    margin-top: 0;
    padding-top: 0;
}

.dictionary-back-link + .verb-summary,
.dictionary-back-link + .noun-summary {
    margin-top: 6px;
}

.content-panel > .dictionary-back-link:first-child {
    margin-top: 0;
    margin-bottom: 14px;
}

.dictionary-panel {
    margin-top: 10px;
    padding: 14px 0 14px;
}

.dictionary-panel + .dictionary-panel {
    margin-top: 20px;
    padding-top: 28px;
    border-top: 1px solid #edf0f2;
}

.dictionary-kicker {
    margin: 0 0 4px;
    color: #9658b9;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dictionary-panel h1 {
    margin: 0 0 12px;
    color: #111111;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.16;
}

.dictionary-intro {
    margin: 0 0 20px;
    color: #555555;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}

.dictionary-search-form {
    display: grid;
    gap: 12px;
}

.dictionary-hebrew-keyboard {
    display: grid;
    gap: 7px;
    padding: 10px;
    border: 1px solid #eceff1;
    border-radius: 12px;
    background: #fafbfc;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.dictionary-hebrew-keyboard[hidden] {
    display: none;
}

.dictionary-hebrew-keyboard.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.dictionary-keyboard-row {
    display: flex;
    justify-content: center;
    gap: 6px;
    direction: ltr;
}

.dictionary-keyboard-row button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 36px;
    padding: 0;
    border: 1px solid #e1e7ea;
    border-radius: 9px;
    color: #263238;
    background: #ffffff;
    font-size: 19px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.dictionary-keyboard-row button:hover {
    border-color: rgba(150, 88, 185, 0.45);
    color: #7b4397;
    background: rgba(150, 88, 185, 0.07);
    transform: translateY(-1px);
}

.dictionary-keyboard-row .dictionary-keyboard-backspace {
    color: #9658b9;
    font-size: 15px;
}

.dictionary-mode-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.dictionary-mode-tabs label {
    min-width: 0;
}

.dictionary-mode-tabs input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.dictionary-mode-tabs span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 10px;
    box-sizing: border-box;
    border: 1px solid #eceff1;
    border-radius: 10px;
    color: #455a64;
    background: #fafbfc;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.dictionary-mode-tabs input:checked + span {
    border-color: rgba(150, 88, 185, 0.28);
    color: #7b4397;
    background: rgba(150, 88, 185, 0.09);
}

.dictionary-search-line {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.dictionary-search-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.dictionary-search-line input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    box-sizing: border-box;
    border: 1px solid #eceff1;
    border-radius: 12px;
    color: #111111;
    background: #fafbfc;
    font-size: 15px;
    font-weight: 600;
    outline: none;
}

.dictionary-search-line input:focus {
    border-color: rgba(150, 88, 185, 0.55);
    background: #ffffff;
}

.dictionary-search-line button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    background: #9658b9;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.dictionary-search-line button:disabled {
    background: #cfd8dc;
    cursor: not-allowed;
}

.dictionary-search-line button:disabled:hover {
    transform: none;
}

.dictionary-results {
    padding-bottom: 18px;
}

.dictionary-results-status {
    min-height: 22px;
    margin: 0 0 10px;
    color: #78909c;
    font-size: 13px;
    font-weight: 500;
}

.dictionary-search-examples {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    min-height: 26px;
    margin: -3px 0 12px;
    color: #78909c;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.dictionary-search-examples:empty {
    display: none;
}

.dictionary-search-examples button {
    padding: 3px 9px;
    border: 1px solid rgba(150, 88, 185, 0.2);
    border-radius: 999px;
    color: #7b4397;
    background: rgba(150, 88, 185, 0.06);
    font: inherit;
    font-weight: 700;
    line-height: 1.35;
    cursor: pointer;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.dictionary-search-examples button:hover {
    border-color: rgba(150, 88, 185, 0.42);
    background: rgba(150, 88, 185, 0.11);
    transform: translateY(-1px);
}

.dictionary-results-list {
    display: grid;
    gap: 10px;
}

.dictionary-result-card {
    display: block;
    padding: 14px;
    border: 1px solid #eceff1;
    border-radius: 12px;
    color: inherit;
    background: #ffffff;
    text-decoration: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.dictionary-result-card:hover {
    border-color: rgba(150, 88, 185, 0.35);
    box-shadow: 0 10px 24px rgba(38, 50, 56, 0.08);
    transform: translateY(-1px);
}

.dictionary-result-body {
    min-width: 0;
}

.dictionary-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.dictionary-result-pill {
    padding: 3px 7px;
    border-radius: 999px;
    color: #607d8b;
    background: #f4f6f7;
    font-size: 11px;
    font-weight: 600;
}

.dictionary-result-forms {
    display: grid;
    gap: 2px;
}

.dictionary-result-form-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    min-width: 0;
}

.dictionary-result-hebrew {
    color: #111111;
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.12;
}

.dictionary-result-hebrew-empty {
    color: #78909c;
}

.dictionary-result-transcription {
    color: #9658b9;
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.2;
}

.dictionary-result-transcription b {
    color: #de4b6a;
    font-weight: 600;
}

.dictionary-result-translation {
    margin-top: 7px;
    color: #263238;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.dictionary-result-translation mark,
.dictionary-result-match mark {
    padding: 0;
    color: #9658b9;
    background: transparent;
    font-weight: 700;
}

.dictionary-result-matches {
    display: grid;
    gap: 5px;
    margin-top: 11px;
}

.dictionary-result-match {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    align-items: baseline;
    gap: 8px;
}

.dictionary-result-match-label {
    color: #78909c;
    font-size: 11px;
    font-weight: 600;
}

.dictionary-result-match-hebrew {
    color: #111111;
    font-size: 14px;
    font-weight: 400;
    text-align: right;
}

.dictionary-result-match-transcription,
.dictionary-result-match-text {
    color: #263238;
    font-size: 12px;
    font-weight: 500;
}

.function-words-count {
    margin: -4px 0 14px;
    color: #78909c;
    font-size: 13px;
    font-weight: 500;
}

.function-words-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.function-word-card {
    min-width: 0;
    padding: 14px 16px;
    border: 1px solid #eceff1;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(38, 50, 56, 0.035);
}

.function-word-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.function-word-card-link:hover {
    border-color: rgba(150, 88, 185, 0.34);
    box-shadow: 0 12px 26px rgba(38, 50, 56, 0.08);
    text-decoration: none;
    transform: translateY(-1px);
}

.function-word-card-with-forms {
    grid-column: 1 / -1;
}

.function-word-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
    min-width: 0;
}

.function-word-hebrew {
    color: #111111;
    font-family: Arial, sans-serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.12;
}

.function-word-transcription {
    color: #9658b9;
    font-size: 15px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.2;
}

.function-word-transcription b {
    color: #de4b6a;
    font-weight: 600;
}

.function-word-translation {
    margin: 8px 0 0;
    color: #455a64;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.function-word-forms {
    display: grid;
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #edf0f2;
}

.function-word-form-section h2 {
    margin: 0 0 10px;
    color: #455a64;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;
}

.function-word-form-list {
    display: grid;
    gap: 6px;
}

.function-word-form-row {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) minmax(120px, 0.65fr);
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border: 1px solid #edf0f2;
    border-radius: 9px;
    background: #fafbfc;
}

.function-word-form-id {
    color: #78909c;
    font-size: 12px;
    font-weight: 600;
}

.function-word-form-words {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

.function-word-form-item {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    min-width: 0;
}

.function-word-form-item strong {
    color: #111111;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
}

.function-word-form-item span {
    color: #9658b9;
    font-size: 13px;
    font-style: italic;
    font-weight: 600;
}

.function-word-form-item b {
    color: #de4b6a;
    font-weight: 600;
}

.function-word-form-meaning {
    color: #455a64;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
}

.preposition-main .verb-summary {
    margin-bottom: 10px;
}

.preposition-summary .summary-copy {
    display: flex;
}

.preposition-summary .summary-copy p {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #f4f6f7;
    color: #607d8b;
    font-size: 13px;
    font-weight: 600;
}

.preposition-section {
    margin-top: 8px;
}

.preposition-form-table-scroll {
    overflow: visible;
}

.preposition-form-grid {
    min-width: 0;
}

.preposition-pronominal-grid {
    min-width: 0;
}

.preposition-grid-corner,
.preposition-grid-row-label {
    width: 82px;
    color: #000000 !important;
    background: #f4f6f7 !important;
}

.preposition-grid-row-label {
    font-size: clamp(12px, 2vw, 14px) !important;
    font-weight: 500 !important;
    line-height: 1.15;
}

.preposition-person-group + .preposition-person-group {
    margin-top: 10px;
}

.preposition-person-heading {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0;
    padding: 0 8px;
    color: #000000;
    background: #f4f6f7;
    border-top: 1px solid #eceff1;
    border-bottom: 1px solid #eceff1;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 500;
    line-height: 1.15;
    text-align: center;
    overflow-wrap: anywhere;
}

.preposition-form-display {
    cursor: default;
}

.preposition-form-variant {
    padding-top: 5px;
    padding-bottom: 2px;
}

.preposition-example-hebrew {
    text-align: start;
}

.preposition-cell-meaning {
    max-width: 190px;
    margin: 3px auto 0;
    color: #455a64;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
}

.preposition-note-button {
    flex: 0 0 auto;
}

.preposition-example-list,
.preposition-see-also-list {
    display: grid;
}

.preposition-example,
.preposition-see-also-item {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 8px;
    padding: 12px 14px;
    border-bottom: 1px solid #edf0f2;
}

.preposition-example-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: baseline;
    gap: 14px;
}

.preposition-example-transcription {
    justify-self: stretch;
    text-align: left;
}

.preposition-see-also-item {
    grid-template-columns: minmax(120px, auto) minmax(90px, auto) minmax(110px, auto) 1fr;
}

.preposition-example:last-child,
.preposition-see-also-item:last-child {
    border-bottom: 0;
}

.preposition-see-also-item strong {
    color: #111111;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
}

.preposition-see-also-item span {
    color: #9658b9;
    font-size: 13px;
    font-style: italic;
    font-weight: 600;
}

.preposition-see-also-item small {
    color: #78909c;
    font-size: 12px;
    font-weight: 600;
}

.preposition-example p,
.preposition-see-also-item p {
    margin: 0;
    color: #455a64;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.preposition-example-translation {
    justify-self: center;
    text-align: center;
}

.pronoun-guide-sections {
    display: grid;
    gap: 18px;
}

.pronoun-guide-section {
    padding: 18px;
    border: 1px solid #eceff1;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(38, 50, 56, 0.035);
}

.pronoun-guide-section-head {
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
}

.pronoun-guide-section-head h2 {
    margin: 0;
    color: #111111;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.22;
}

.pronoun-guide-section-head p {
    margin: 0;
    color: #607d8b;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
}

.pronoun-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.pronoun-card {
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid #edf0f2;
    border-radius: 10px;
    background: #fafbfc;
}

.pronoun-pattern-list {
    display: grid;
    gap: 12px;
}

.pronoun-pattern-card {
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.pronoun-pattern-card .pronoun-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.pronoun-pattern-card .pronoun-card p {
    margin-top: 8px;
}

.pronoun-card-main {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    min-width: 0;
}

.pronoun-card-hebrew {
    color: #111111;
    font-family: Arial, sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.12;
}

.pronoun-card-transcription {
    color: #9658b9;
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.2;
}

.pronoun-card-transcription b {
    color: #de4b6a;
    font-weight: 600;
}

.pronoun-card p {
    margin: 7px 0 0;
    color: #455a64;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.pronoun-form-block {
    display: grid;
    gap: 12px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #e8eef1;
}

.pronoun-form-section h3 {
    margin: 0 0 10px;
    color: #455a64;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;
}

.pronoun-form-table {
    display: grid;
    border: 1px solid #e8eef1;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
}

.pronoun-form-row {
    display: grid;
    grid-template-columns: 150px minmax(220px, 1fr) minmax(180px, 0.72fr);
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-bottom: 1px solid #edf0f2;
    background: #ffffff;
}

.pronoun-form-row:last-child {
    border-bottom: 0;
}

.pronoun-form-id {
    color: #78909c;
    font-size: 12px;
    font-weight: 600;
}

.pronoun-form-words {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

.pronoun-form-item {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    min-width: 0;
}

.pronoun-form-item strong {
    color: #111111;
    font-family: Arial, sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.1;
}

.pronoun-form-item span {
    color: #9658b9;
    font-size: 13px;
    font-style: italic;
    font-weight: 600;
}

.pronoun-form-item b {
    color: #de4b6a;
    font-weight: 600;
}

.pronoun-form-meaning {
    color: #455a64;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
}

.noun-main .verb-summary {
    margin-bottom: 10px;
}

.noun-main .summary-copy {
    display: grid;
    gap: 2px;
}

.noun-main .summary-translation {
    font-size: 17px;
}

.noun-declension-section {
    margin-top: 8px;
}

.noun-form-table td {
    padding: 8px 8px 10px;
}

.noun-form-table th {
    direction: ltr;
    unicode-bidi: isolate;
}

.noun-form-table.form-table-5 {
    table-layout: fixed;
}

.noun-pronominal-section {
    margin-top: 8px;
}

.noun-pronominal-section > h2 {
    border-bottom: 1px solid #eceff1;
}

.noun-pronominal-group + .noun-pronominal-group {
    border-top: 1px solid #eceff1;
}

.noun-pronominal-group h3 {
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0;
    padding: 0 8px;
    color: #000000;
    background: #f4f6f7;
    border-bottom: 1px solid #eceff1;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
}

.noun-pronominal-table {
    table-layout: fixed;
}

.noun-pronominal-table td {
    padding: 6px 5px 7px;
    border-bottom: 1px solid #eceff1;
}

.noun-pronominal-table tr:last-child td {
    border-bottom: 0;
}

.noun-pronominal-label {
    display: none;
}

.noun-section {
    margin-top: 8px;
    padding: 0;
    border: 1px solid #eceff1;
    border-radius: 14px;
    background: #ffffff;
    overflow: hidden;
}

.noun-section h2 {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0;
    padding: 0 8px;
    color: #000000;
    background: #eceff1;
    border-bottom: 1px solid #eceff1;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
}

.noun-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.noun-form-card {
    min-width: 0;
    padding: 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.noun-form-card h3 {
    margin: 0 0 10px;
    color: #78909c;
    font-size: 13px;
    font-weight: 600;
}

.noun-form-plain,
.noun-empty {
    display: block;
    margin-top: 4px;
    color: #78909c;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}

.noun-prose {
    padding: 14px 16px 16px;
    color: #455a64;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.noun-prose ul,
.noun-see-also {
    margin: 0;
    padding-left: 20px;
}

.noun-nested-list {
    display: grid;
    gap: 8px;
}

.noun-nested-dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.noun-nested-dl > div {
    display: grid;
    gap: 4px;
}

.noun-nested-dl dt {
    color: #78909c;
    font-size: 12px;
    font-weight: 600;
}

.noun-nested-dl dd {
    margin: 0;
}

.noun-see-also {
    padding: 14px 16px 16px;
    display: grid;
    gap: 8px;
    color: #455a64;
    font-size: 15px;
}

.noun-see-also li {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.noun-see-also strong {
    color: #111111;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
}

@media (max-width: 680px) {
    .dictionary-section-grid {
        grid-template-columns: 1fr;
    }

    .dictionary-back-link {
        margin: 14px 0 8px;
        font-size: 14px;
    }

    .dictionary-section-card {
        min-height: 104px;
        padding: 16px;
        gap: 12px;
    }

    .dictionary-section-icon {
        width: 50px;
        height: 50px;
        font-size: 19px;
    }

    .dictionary-section-content strong {
        font-size: 20px;
    }

    .dictionary-section-content span {
        font-size: 14px;
    }

    .dictionary-hebrew-keyboard {
        gap: 7px;
        padding: 8px;
        overflow: visible;
    }

    .dictionary-panel {
        margin-top: 8px;
        padding-top: 10px;
    }

    .dictionary-panel h1 {
        font-size: 26px;
    }

    .dictionary-mode-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dictionary-keyboard-row {
        display: grid;
        gap: 4px;
        width: 100%;
    }

    .dictionary-keyboard-row:nth-child(1),
    .dictionary-keyboard-row:nth-child(3) {
        grid-template-columns: repeat(9, minmax(0, 1fr));
    }

    .dictionary-keyboard-row:nth-child(2) {
        grid-template-columns: repeat(10, minmax(0, 1fr));
    }

    .dictionary-keyboard-row button {
        width: 100%;
        min-width: 0;
        height: clamp(28px, 7.6vw, 32px);
        border-radius: 8px;
        font-size: clamp(15px, 4.4vw, 17px);
    }

    .dictionary-search-line {
        grid-template-columns: 1fr;
    }

    .dictionary-result-match {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .dictionary-result-infinitive {
        justify-self: start;
    }

    .function-words-list {
        grid-template-columns: 1fr;
    }

    .function-word-card {
        padding: 13px 14px;
    }

    .preposition-example,
    .preposition-see-also-item {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 7px;
    }

    .preposition-pronominal-grid {
        min-width: 0;
    }

    .function-word-form-row {
        grid-template-columns: 42px minmax(0, 1fr);
        align-items: start;
    }

    .function-word-form-meaning {
        grid-column: 2;
    }

    .pronoun-guide-section {
        padding: 15px;
    }

    .pronoun-card-grid {
        grid-template-columns: 1fr;
    }

    .pronoun-pattern-card {
        padding: 0;
    }

    .pronoun-form-row {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 7px;
    }

    .pronoun-form-meaning {
        grid-column: auto;
    }

    .noun-section {
        padding: 0;
    }

    .noun-form-grid {
        grid-template-columns: 1fr;
    }

    .noun-form-table td {
        padding: 7px 6px 9px;
    }

    .noun-pronominal-table td {
        padding: 7px 4px 9px;
    }

    .noun-pronominal-table .form-variant {
        align-items: center;
    }
}
