/*
Theme Name: HT Theme Common
Theme URI: https://github.com/hennet8148/ht-theme-common
Author: Chuck Hennet
Author URI: https://speedlimit25.com
Description: Custom minimalist theme shared across all projects
Version: 1.0
License: MIT
Text Domain: ht-theme-common
*/

/* --- Utilities --- */
.clamp-2{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.clamp-3{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}

/* Aspect ratio 3:2 that works even without Tailwind plugins */
.ratio-3-2{position:relative}
.ratio-3-2::before{content:"";display:block;padding-bottom:66.666%}
.ratio-fill{position:absolute;inset:0}
 /* ---- Global corner radius override (HM-style) ---- */
/* Tweak this one value to taste (e.g., 0 for square, 4px, 6px, 8px) */
:root { --dfbp-radius: 6px; }

/* Override Tailwind corner utilities everywhere */
.rounded,
.rounded-sm,
.rounded-md,
.rounded-lg,
.rounded-xl,
.rounded-2xl,
.rounded-3xl {
  border-radius: var(--dfbp-radius) !important;
}

/* Keep fully circular pills/avatars intact */
.rounded-full { border-radius: 9999px !important; }

/* If you ever use side-specific utilities */
.rounded-t, .rounded-tr, .rounded-tl,
.rounded-b, .rounded-br, .rounded-bl,
.rounded-l, .rounded-r {
  border-radius: var(--dfbp-radius) !important;
}

