/**
 * @fileoverview FMD Modules Standalone Styles
 * 
 * This file contains the extracted fmd-modules styles for numbered lists and beauty notes
 * to replicate the exact styling from the original tutorial carousel.
 */

/* CSS Variables */
:root {
    --color-blue: #3fabf3;
    --color-blue-hover: #3186be;
    --color-red: #f33a3a;
    --color-gray: #767676;
    --color-gray-light: #f7f7f7;
    --color-black: #000;
}

/* Numbered List Styles */
ol.fmd-modules__numbered-list {
    margin-left: 0.6rem;
}

.fmd-modules__numbered-list {
    counter-reset: list-item;
    list-style: none;
    padding: 0;
    margin: 0;
}

.fmd-modules__list-item {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
    padding-left: 0.5rem;
    position: relative;
}

.fmd-modules__list-item--custom-marker {
    list-style: none;
    position: relative;
    counter-increment: list-item;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.fmd-modules__list-item--custom-marker::before {
    content: counter(list-item) ".";
    position: absolute;
    left: -2rem;
    top: 0;
    font-weight: bold;
    color: #3fabf3;
    margin-right: 1rem;
    width: 1.5rem;
    text-align: right;
}

/* Beauty Note Styles */
.fmd-modules__beauty-note {
    border: dashed 2px #d1d1d1;
    padding: 1rem;
    border-radius: 10px;
    background: white;
    margin-top: 1rem;
    text-align: justify;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

/* Text Utilities */
.text-justify {
    text-align: justify;
}

.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-lowercase {
    text-transform: lowercase;
}

/* Color Utilities */
.text-blue {
    color: var(--color-blue) !important;
}

.text-red {
    color: var(--color-red) !important;
}

/* Margin and Padding Utilities */
.m-0 {
    margin: 0;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-tw-2 {
    margin-top: 0.5rem;
}

.mt-tw-4 {
    margin-top: 1rem;
}

.mt-tw-8 {
    margin-top: 2rem;
}

/* Responsive Utilities */
@media (min-width: 640px) {
    .sm\:hidden-tw {
        display: none;
    }

    .sm\:visible-tw {
        display: block;
    }

    .sm\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .sm\:mt-tw-8 {
        margin-top: 2rem;
    }
}