/**
 * "Start Here" GIF block styles.
 *
 * File version: 2025-11-22_15-45
 * Change log:
 * - 2025-11-22 15:45 PST – Updated to use legacy .gif-img positioning
 *   (float/absolute/left offset) matching the D7 implementation.
 * - 2025-11-22 15:30 PST – Image-only Start Here block.
 * - 2025-11-22 15:20 PST – Initial text-based Start Here badge.
 */

/* Match the original D7 CSS. */
.gif-img {
  float: left;
  position: relative;
  width: 170px;
}

.gif-img img {
  display: block;
  width: 170px;
  height: auto;
}

/* Optional: small-screen safety (so it doesn't float off-screen). */
@media (max-width: 768px) {
  .gif-img {
    position: static;
    float: none;
    margin: 8px auto 12px;
  }
}
