/* 
 * SaveThumbnail - Core Styles
 * Replaces Tailwind CSS for instant loading.
 */

:root {
    /* Color Palette */
    --color-ilove-red: #DC2626;
    --color-ilove-gray: #4B5563;
    --color-ilove-border: #E5E7EB;
    --color-ilove-bg: #F8FAFC;

    --color-white: #ffffff;
    --color-black: #000000;

    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-300: #D1D5DB;
    --color-gray-400: #9CA3AF;
    --color-gray-500: #6B7280;
    --color-gray-600: #4B5563;
    --color-gray-800: #1F2937;
    --color-gray-900: #111827;

    /* Ring Defaults */
    --tw-ring-color: rgba(59, 130, 246, 0.5);

    /* Font */
    --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

/* Dark Mode Overrides */
.dark {
    --color-ilove-bg: #111827;
    /* gray-900 */
    --color-white: #1F2937;
    /* gray-800 for bg-white */
    --color-gray-50: #111827;
    /* gray-900 */
    --color-gray-100: #374151;
    /* gray-700 */
    --color-gray-200: #374151;
    --color-gray-800: #F9FAFB;
    /* inverted text */
    --color-gray-900: #F9FAFB;
    /* inverted text */
    --color-gray-500: #9CA3AF;
    /* gray-400 */
}

/* Base Reset */
*,
::before,
::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: var(--color-gray-200);
}

html {
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--color-ilove-bg);
    color: var(--color-gray-900);
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Preflight - Form Elements */
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

/* --- Utility Classes (Mini-Tailwind) --- */

/* Layout */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-5xl {
    max-width: 64rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-xl {
    max-width: 36rem;
}

.w-full {
    width: 100%;
}

.h-16 {
    height: 4rem;
}

.h-full {
    height: 100%;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.w-12 {
    width: 3rem;
}

.h-12 {
    height: 3rem;
}

/* Flexbox */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.shrink-0 {
    flex-shrink: 0;
}

.grow {
    flex-grow: 1;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-2\.5 {
    gap: 0.625rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

/* Grid */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:flex-row {
        flex-direction: row;
    }
}

/* Spacing */
.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.pt-10 {
    padding-top: 2.5rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.ml-4 {
    margin-left: 1rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-auto {
    margin-top: auto;
}

/* Typography */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.font-sans {
    font-family: var(--font-sans);
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}

.font-medium {
    font-weight: 500;
}

.font-light {
    font-weight: 300;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.uppercase {
    text-transform: uppercase;
}

/* Colors - Background */
.bg-white {
    background-color: var(--color-white);
}

.bg-gray-50 {
    background-color: var(--color-gray-50);
}

.bg-gray-900 {
    background-color: var(--color-gray-900);
}

.bg-ilove-red {
    background-color: var(--color-ilove-red);
}

.bg-red-50 {
    background-color: #FEF2F2;
}

.bg-blue-50 {
    background-color: #EFF6FF;
}

.bg-green-50 {
    background-color: #F0FDF4;
}

.bg-orange-50 {
    background-color: #FFF7ED;
}

.bg-purple-50 {
    background-color: #FAF5FF;
}

.bg-transparent {
    background-color: transparent;
}

/* Colors - Text */
.text-white {
    color: var(--color-white);
}

.text-gray-900 {
    color: var(--color-gray-900);
}

.text-gray-500 {
    color: var(--color-gray-500);
}

.text-gray-400 {
    color: var(--color-gray-400);
}

.text-gray-300 {
    color: var(--color-gray-300);
}

.text-ilove-red {
    color: var(--color-ilove-red);
}

.text-blue-600 {
    color: #2563EB;
}

.text-green-600 {
    color: #16A34A;
}

.text-orange-600 {
    color: #EA580C;
}

.text-purple-600 {
    color: #9333EA;
}

/* Borders */
.border {
    border-width: 1px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.border-l {
    border-left-width: 1px;
}

.border-y {
    border-top-width: 1px;
    border-bottom-width: 1px;
}

.border-gray-100 {
    border-color: var(--color-gray-100);
}

.border-gray-200 {
    border-color: var(--color-gray-200);
}

.border-red-100 {
    border-color: #FEE2E2;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* Effects */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.opacity-80 {
    opacity: 0.8;
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

/* Visibility */
.hidden {
    display: none;
}

@media (min-width: 640px) {
    .sm\:flex {
        display: flex;
    }

    .sm\:hidden {
        display: none;
    }
}

@media (min-width: 768px) {
    .md\:block {
        display: block;
    }

    .md\:hidden {
        display: none;
    }
}

/* Positioning */
.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

/* Interactive */
.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

.hover\:text-ilove-red:hover {
    color: var(--color-ilove-red);
}

.hover\:bg-gray-100:hover {
    background-color: var(--color-gray-100);
}

.hover\:bg-gray-800:hover {
    background-color: #1F2937;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-duration: 150ms;
}

.transition-transform {
    transition-property: transform;
    transition-duration: 150ms;
}

.cursor-pointer {
    cursor: pointer;
}

.outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

/* Helper specific to SaveThumbnail */
#liveCounter {
    font-variant-numeric: tabular-nums;
}

/* Selection */
::selection {
    background-color: var(--color-ilove-red);
    color: white;
}

/* --- JS-Required Utilities --- */
/* These classes are dynamically injected by assets/js/main.js */

/* Specific Values */
.text-\[10px\] {
    font-size: 10px;
}

.text-\[9px\] {
    font-size: 9px;
}

.tracking-\[0\.3em\] {
    letter-spacing: 0.3em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.bg-\[\#25D366\] {
    background-color: #25D366;
}

.hover\:bg-\[\#20bd5a\]:hover {
    background-color: #20bd5a;
}

/* Opacity & Alpha */
.bg-ilove-red\/5 {
    background-color: rgba(220, 38, 38, 0.05);
}

.shadow-red-500\/10 {
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.1), 0 4px 6px -4px rgba(239, 68, 68, 0.1);
}

.opacity-0 {
    opacity: 0;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-100 {
    opacity: 1;
}

.hover\:opacity-100:hover {
    opacity: 1;
}

/* Transitions */
.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Positioning */
.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Interactive */
.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}

.group:hover .group-hover\:translate-y-1 {
    transform: translateY(0.25rem);
}

.active\:scale-95:active {
    transform: scale(0.95);
}

.cursor-not-allowed {
    cursor: not-allowed;
}

/* Missing Shadows */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* --- Missing Utilities Added during Visual Regression Fix --- */

/* Typography - Specific Sizes */
.text-\[13px\] {
    font-size: 13px;
    line-height: 1.2;
}

.text-\[11px\] {
    font-size: 11px;
    line-height: 1.2;
}

/* Line Heights */
.leading-none {
    line-height: 1;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

/* Opacity Modifiers */
.bg-white\/95 {
    background-color: rgba(255, 255, 255, 0.95);
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Transitions & Easing */
.duration-300 {
    transition-duration: 300ms;
}

.ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

/* Transforms */
.hover\:-translate-y-0\.5:hover {
    transform: translateY(-0.125rem);
}

/* Focus States */
.focus-within\:ring-4:focus-within {
    box-shadow: 0 0 0 4px var(--tw-ring-color);
}

.focus-within\:ring-red-500\/5:focus-within {
    --tw-ring-color: rgba(239, 68, 68, 0.05);
}

.focus-within\:border-red-100:focus-within {
    border-color: #FEE2E2;
}

/* Layout Extras */
.flex-wrap {
    flex-wrap: wrap;
}

.pl-4 {
    padding-left: 1rem;
}

/* Dark Mode Specifics */
.dark .dark\:hover\:bg-gray-800:hover {
    background-color: #1F2937;
}

/* Rotations & Transforms */
.rotate-45 {
    transform: rotate(45deg);
}

.rotate-\[-2deg\] {
    transform: rotate(-2deg);
}

.rotate-\[2deg\] {
    transform: rotate(2deg);
}

.hover\:rotate-0:hover {
    transform: rotate(0deg);
}

/* --- Additional Spacing Utilities (Critical for Layout) --- */
.p-1\.5 {
    padding: 0.375rem;
}

.px-2\.5 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.py-0\.5 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}

.py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-12 {
    padding-top: 3rem;
}

.pl-7 {
    padding-left: 1.75rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .md\:py-3 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}

/* Accordion Group Open */
details[open] .group-open\:rotate-45 {
    transform: rotate(45deg);
}

/* Responsive Rounded */
@media (min-width: 768px) {
    .md\:rounded-full {
        border-radius: 9999px;
    }

    .md\:text-left {
        text-align: left;
    }

    .md\:w-auto {
        width: auto;
    }

    .md\:px-12 {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .md\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .md\:mb-0 {
        margin-bottom: 0;
    }
}

.placeholder-gray-500::placeholder {
    color: var(--color-gray-500);
    opacity: 1;
}

.placeholder-gray-400::placeholder {
    color: var(--color-gray-400);
    opacity: 1;
}

/* Interactive Borders/Colors */
.hover\:border-gray-300:hover {
    border-color: var(--color-gray-300);
}

.text-yellow-500 {
    color: #EAB308;
}

/* Specific Widths */
.w-1\.5 {
    width: 0.375rem;
}

.h-1\.5 {
    height: 0.375rem;
}

/* Blog Post Specifics */
.max-w-none {
    max-width: none;
}

@media (min-width: 768px) {
    .md\:p-12 {
        padding: 3rem;
    }

    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

/* Missing Hover States */
.hover\:underline:hover {
    text-decoration: underline;
}

.hover\:gap-3:hover {
    gap: 0.75rem;
}

.hover\:bg-red-50:hover {
    background-color: #FEF2F2;
}

.hover\:border-red-100:hover {
    border-color: #FEE2E2;
}

/* --- Deep Clean: Missing Utilities (Batch Added) --- */

/* Prose & Typography */
.prose {
    max-width: 65ch;
    color: var(--color-gray-600);
    line-height: 1.75;
}

.prose-lg {
    font-size: 1.125rem;
    line-height: 1.7777778;
}

.prose h2 {
    color: var(--color-gray-900);
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 1em;
}

.prose p {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}

.prose a {
    color: var(--color-ilove-red);
    text-decoration: underline;
    font-weight: 500;
}

.prose-red {
    --tw-prose-links: var(--color-ilove-red);
}

.prose-slate {
    --tw-prose-body: var(--color-gray-600);
}

.not-prose {
    color: inherit;
}

.no-underline {
    text-decoration: none;
}

.italic {
    font-style: italic;
}

.font-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

/* Lists */
.list-disc {
    list-style-type: disc;
}

.list-decimal {
    list-style-type: decimal;
}

.list-none {
    list-style-type: none;
}

/* Spacing & Layout */
.space-y-2> :not([hidden])~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-3> :not([hidden])~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.space-y-4> :not([hidden])~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-6> :not([hidden])~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.space-y-12> :not([hidden])~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}

.space-y-24> :not([hidden])~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(6rem * var(--tw-space-y-reverse));
}

.w-10 {
    width: 2.5rem;
}

.w-16 {
    width: 4rem;
}

.w-32 {
    width: 8rem;
}

.w-auto {
    width: auto;
}

.h-10 {
    height: 2.5rem;
}

.h-32 {
    height: 8rem;
}

.h-auto {
    height: auto;
}

.h-screen {
    height: 100vh;
}

.min-h-screen {
    min-height: 100vh;
}

.m-0 {
    margin: 0;
}

.mt-0 {
    margin-top: 0;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-20 {
    margin-bottom: 5rem;
}

.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.p-6 {
    padding: 1.5rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.pl-0 {
    padding-left: 0;
}

.pl-5 {
    padding-left: 1.25rem;
}

.pl-6 {
    padding-left: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-3\.5 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

/* Grid & Flex */
.items-start {
    align-items: flex-start;
}

.justify-start {
    justify-content: flex-start;
}

.flex-1 {
    flex: 1 1 0%;
}

.lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-y-4 {
    row-gap: 1rem;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-x-auto {
    overflow-x: auto;
}

/* Borders & Dividers */
.border-2 {
    border-width: 2px;
}

.border-l-4 {
    border-left-width: 4px;
}

.border-collapse {
    border-collapse: collapse;
}

.border-dashed {
    border-style: dashed;
}

.divide-y> :not([hidden])~ :not([hidden]) {
    --tw-divide-y-reverse: 0;
    border-top-width: 1px;
    border-bottom-width: 0px;
    border-color: var(--color-gray-200);
}

.divide-gray-100> :not([hidden])~ :not([hidden]) {
    border-color: var(--color-gray-100);
}

/* Colors */
.text-ilove-gray {
    color: var(--color-ilove-gray);
}

.text-blue-500 {
    color: #3b82f6;
}

.text-blue-800 {
    color: #1e40af;
}

.text-blue-900 {
    color: #1e3a8a;
}

.text-green-500 {
    color: #22c55e;
}

.text-green-700 {
    color: #15803d;
}

.text-red-500 {
    color: #ef4444;
}

.text-orange-500 {
    color: #f97316;
}

.text-pink-500 {
    color: #ec4899;
}

.text-purple-500 {
    color: #a855f7;
}

.text-teal-500 {
    color: #14b8a6;
}

.text-indigo-500 {
    color: #6366f1;
}

.text-slate-900 {
    color: #0f172a;
}

.text-yellow-600 {
    color: #ca8a04;
}

.bg-gray-200 {
    background-color: var(--color-gray-200);
}

.bg-green-200 {
    background-color: #bbf7d0;
}

.bg-red-100 {
    background-color: #fee2e2;
}

.border-gray-50 {
    border-color: var(--color-gray-50);
}

.border-blue-100 {
    border-color: #e0e7ff;
}

.border-blue-500 {
    border-color: #3b82f6;
}

.border-green-100 {
    border-color: #dcfce7;
}

.border-ilove-red {
    border-color: var(--color-ilove-red);
}

/* Effects */
.opacity-50 {
    opacity: 0.5;
}

.shadow-red-600\/20 {
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.2), 0 2px 4px -1px rgba(220, 38, 38, 0.2);
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hover\:shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.group-hover\:text-ilove-red:hover {
    color: var(--color-ilove-red);
}

.hover\:text-gray-600:hover {
    color: var(--color-gray-600);
}

.hover\:bg-red-700:hover {
    background-color: #b91c1c;
}

/* Responsive Supplement */
@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }

    .md\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .md\:prose-base {
        font-size: 1rem;
        line-height: 1.75;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}