/* Support ticket 01KYBECD0AT8JG6CJKG6QSZRHP (2026-07-26)
   The 'crafty' theme pins the landing hero to a fixed 315px height at >=1024px
   and clamps the page-content block to 10 rendered lines to fit inside it, so
   this merchant's full home page write-up was hidden behind an ellipsis.
   Lift the clamp AND let the hero grow, so the text stays inside the coloured
   banner instead of overflowing onto the category row below.
   Per-store only - do not move this into the shared theme. */
.landing_inner_bottom .de_text-tool[data-editor-type="page-content"] {
    display: block !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    overflow: visible !important;
    text-overflow: clip !important;
}

.main_landing {
    height: auto !important;
    min-height: 315px;
}
