/*
 * Custom CSS equivalent for Tailwind utility classes used in the HTML.
 * Includes custom colors and font family defined in the original tailwind.config.
 */

/* Custom Variables based on tailwind.config */
:root {
    --primary-blue: #1070D7;
    --secondary-gold: #FFC72C;
    --background-light: #F8FAFC;
    --color-gray-900: #111827; /* Tailwind gray-900 */
    --color-gray-800: #1F2937; /* Tailwind gray-800 */
    --color-gray-700: #374151; /* Tailwind gray-700 */
    --color-gray-600: #4B5563; /* Tailwind gray-600 */
    --color-gray-500: #6B7280; /* Tailwind gray-500 */
    --color-gray-200: #E5E7EB; /* Tailwind gray-200 */
}

/* Base Styles */
body {
    /* antialiased bg-background-light font-sans */
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--background-light);
    font-family: 'Inter', sans-serif; /* Custom font-sans */
    line-height: 1.5; /* Default line-height */
}

/* Typography/Text */
.text-gray-900 {
    color: var(--color-gray-900);
}

.text-gray-800 {
    color: var(--color-gray-800);
}

.text-gray-700 {
    color: var(--color-gray-700);
}

.text-gray-600 {
    color: var(--color-gray-600);
}

.text-gray-500 {
    color: var(--color-gray-500);
}

.text-primary-blue {
    color: var(--primary-blue);
}

.text-sm {
    font-size: 0.875rem; /* 14px */
    line-height: 1.25rem; /* 20px */
}

.text-lg {
    font-size: 1.125rem; /* 18px */
    line-height: 1.75rem; /* 28px */
}

.text-xl {
    font-size: 1.25rem; /* 20px */
    line-height: 1.75rem; /* 28px */
}

.text-2xl {
    font-size: 1.5rem; /* 24px */
    line-height: 2rem; /* 32px */
}

.text-3xl {
    font-size: 1.875rem; /* 30px */
    line-height: 2.25rem; /* 36px */
}

.text-4xl {
    font-size: 2.25rem; /* 36px */
    line-height: 2.5rem; /* 40px */
}

/* Default for h1/text-5xl for md breakpoint and above */
.text-5xl {
    font-size: 3rem; /* 48px */
    line-height: 1; /* 48px */
}

@media (min-width: 768px) {
    .md\:text-5xl {
        font-size: 3rem; /* 48px */
        line-height: 1;
    }

    .md\:py-20 {
        padding-top: 5rem; /* 80px */
        padding-bottom: 5rem; /* 80px */
    }
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.leading-relaxed {
    line-height: 1.625; /* 26px for 18px text, slightly more relaxed than default */
}

.leading-tight {
    line-height: 1.25; /* 45px for 36px text */
}

.italic {
    font-style: italic;
}

.text-center {
    text-align: center;
}

/* Layout and Spacing */
.container {
    /* Assuming a general container for header/footer in your existing CSS */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-screen-xl {
    max-width: 1280px; /* Equivalent to 1280px */
}

.max-w-4xl {
    max-width: 56rem; /* Equivalent to 896px */
}

.px-4 {
    padding-left: 1rem; /* 16px */
    padding-right: 1rem; /* 16px */
}

@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: 1.5rem; /* 24px */
        padding-right: 1.5rem; /* 24px */
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left: 2rem; /* 32px */
        padding-right: 2rem; /* 32px */
    }
}

.py-12 {
    padding-top: 3rem; /* 48px */
    padding-bottom: 3rem; /* 48px */
}

.pb-8 {
    padding-bottom: 2rem; /* 32px */
}

.pl-4 {
    padding-left: 1rem; /* 16px */
}

.pt-4 {
    padding-top: 1rem; /* 16px */
}

.pt-8 {
    padding-top: 2rem; /* 32px */
}

.pb-2 {
    padding-bottom: 0.5rem; /* 8px */
}

.pl-6 {
    padding-left: 1.5rem; /* 24px */
}

.py-2 {
    padding-top: 0.5rem; /* 8px */
    padding-bottom: 0.5rem; /* 8px */
}

.my-6 {
    margin-top: 1.5rem; /* 24px */
    margin-bottom: 1.5rem; /* 24px */
}

.mt-2 {
    margin-top: 0.5rem; /* 8px */
}

.mb-3 {
    margin-bottom: 0.75rem; /* 12px */
}

.mb-8 {
    margin-bottom: 2rem; /* 32px */
}

.mb-12 {
    margin-bottom: 3rem; /* 48px */
}

.mr-3 {
    margin-right: 0.75rem; /* 12px */
}

.ml-6 {
    margin-left: 1.5rem; /* 24px */
}

/* Flexbox and Alignment */
.flex {
    display: flex;
}

.items-start {
    align-items: flex-start;
}

/* Borders and Dividers */
.border-b {
    border-width: 0;
    border-bottom-width: 1px;
    border-style: solid; /* Added for clarity, though default is solid */
}

.border-l-4 {
    border-width: 0;
    border-left-width: 4px;
    border-style: solid; /* Added for clarity */
}

.border-gray-200 {
    border-color: var(--color-gray-200);
}

.border-primary-blue {
    border-color: var(--primary-blue);
}

.border-secondary-gold {
    border-color: var(--secondary-gold);
}

/* Sizing and Positioning */
.w-full {
    width: 100%;
}

.h-auto {
    height: auto;
}

.object-cover {
    object-fit: cover;
}

/* Shadows and Appearance */
.rounded-xl {
    border-radius: 0.75rem; /* 12px */
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Lists and Spacing */
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 2rem; /* 32px */
    margin-bottom: 0;
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.75rem; /* 12px */
    margin-bottom: 0;
}

.space-y-1 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.25rem; /* 4px */
    margin-bottom: 0;
}

.list-none {
    list-style-type: none;
}

.list-disc {
    list-style-type: disc;
}

.list-inside {
    list-style-position: inside;
}

.pl-0 {
    padding-left: 0;
}

/* Image fallback style */
/* The onerror handler is a JavaScript fallback, but this class keeps the image style */
/* .article figure img {} */


/* Note: Styles for main-header, main-nav, hamburger, container, etc.,
   are part of your existing component CSS (assumed to be in style.css)
   and are not translated here unless they had a Tailwind utility class applied. */