/**
 * jp-594-oekosystem-more-arrow-align.css — JP-594 (Bug) Home "JTL Ökosystem"
 * logobox tiles: "mehr erfahren" label not aligned with the arrow icon on the
 * tiles that have NO partner logo.
 *
 * Layout: each tile (.logobox-tile__link) is a CSS grid; the bottom row is
 * `logo | arrow`. On partner tiles the partner logo sits in the `logo` cell and
 * lines up with the arrow. On product tiles (no logo) the "mehr erfahren" label
 * (.logobox-tile__more) is placed in that same `logo` cell — but it inherits
 * `align-self: end`, so the 14px text bottom-aligns inside the 28px row while the
 * 28px arrow pill fills the row. Result: the text's centre sits ~7px BELOW the
 * arrow's centre — visibly misaligned.
 *
 * Fix: centre the label in the row so its vertical centre matches the arrow
 * (which fills the row, centre = row centre). One property, no structural change.
 * Scoped to .logobox-tile__more, which only renders on the no-logo (product)
 * tiles — partner tiles hide it, so they are unaffected.
 *
 * Verified: label-vs-arrow centre offset 7px -> 0px across the product tiles.
 * Loaded after custom-clone.css (overrides dir) so it wins the cascade.
 */
section.home-logobox-section .logobox-tile__more {
    align-self: center !important;
}
