/* 1. Remove Hexagon Clipping & Resize Logo */
#intro .logo {
    width: auto !important;          /* Remove the 4em restriction */
    overflow: visible !important;   /* Ensure no edges are cut */
    margin: 0 0 1.5em 0 !important;
}

#intro .logo:before {
    display: none !important;        /* Delete the hexagonal SVG mask */
}

#intro .logo img {
    width: 6em !important;           /* Increase logo size (default was 4.5em) */
    height: auto !important;
    margin-left: 0 !important;      /* Remove the -0.25em nudge from the theme */
}

/* 2. Adjust Title Size for Two-Line Fit */
#intro header h2 {
    font-size: 1.4em !important;     /* Reduced from 2em to fit better */
    line-height: 1.2 !important;     /* Tighter spacing for multi-line titles */
    letter-spacing: 0.15em !important; /* Slightly tighter than theme default */
    word-wrap: break-word;
    max-width: 100%;
}