html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.info-editor {
    color: #374151;
    font-size: 16px;
    line-height: 1.8;
    word-break: break-word;
}

    .info-editor > *:first-child {
        margin-top: 0;
    }

    .info-editor > *:last-child {
        margin-bottom: 0;
    }

    /* Headings */
    .info-editor h1,
    .info-editor h2,
    .info-editor h3,
    .info-editor h4,
    .info-editor h5,
    .info-editor h6 {
        font-weight: 700;
        color: #111827;
        line-height: 1.3;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .info-editor h1 {
        font-size: 2.25rem;
    }

    .info-editor h2 {
        font-size: 1.75rem;
    }

    .info-editor h3 {
        font-size: 1.5rem;
    }

    .info-editor h4 {
        font-size: 1.25rem;
    }

    .info-editor h5 {
        font-size: 1.125rem;
    }

    .info-editor h6 {
        font-size: 1rem;
    }

    /* Paragraph */
    .info-editor p {
        margin: 0 0 1rem;
        line-height: 1.85;
    }

    /* Lists */
    .info-editor ul,
    .info-editor ol {
        margin: 1rem 0 1.5rem 1.5rem;
        padding-left: 1rem;
    }

    .info-editor ul {
        list-style: disc;
    }

    .info-editor ol {
        list-style: decimal;
    }

    .info-editor li {
        margin-bottom: 0.6rem;
        line-height: 1.8;
    }

        .info-editor li > ul,
        .info-editor li > ol {
            margin-top: 0.6rem;
            margin-bottom: 0;
        }

    /* Links */
    .info-editor a {
        color: #2563eb;
        text-decoration: underline;
        transition: color .2s ease;
    }

        .info-editor a:hover {
            color: #1d4ed8;
        }

    /* Bold & Italic */
    .info-editor strong,
    .info-editor b {
        font-weight: 700;
    }

    .info-editor em,
    .info-editor i {
        font-style: italic;
    }

    /* Blockquote */
    .info-editor blockquote {
        margin: 1.5rem 0;
        padding: 1rem 1.5rem;
        border-left: 4px solid #d1d5db;
        background: #f9fafb;
        color: #4b5563;
        font-style: italic;
    }

    /* Images */
    .info-editor img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 1.5rem auto;
        border-radius: 8px;
    }

    /* Tables */
    .info-editor table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.5rem 0;
    }

    .info-editor th,
    .info-editor td {
        border: 1px solid #e5e7eb;
        padding: 12px;
        text-align: left;
    }

    .info-editor th {
        background: #f3f4f6;
        font-weight: 600;
    }

    /* Horizontal Rule */
    .info-editor hr {
        margin: 2rem 0;
        border: 0;
        border-top: 1px solid #e5e7eb;
    }

    /* Code */
    .info-editor code {
        background: #f3f4f6;
        padding: 2px 6px;
        border-radius: 4px;
        font-size: .9em;
    }

    .info-editor pre {
        background: #111827;
        color: #fff;
        padding: 1rem;
        overflow-x: auto;
        border-radius: 8px;
        margin: 1.5rem 0;
    }

        .info-editor pre code {
            background: transparent;
            padding: 0;
            color: inherit;
        }

/* Responsive */
@media (max-width: 768px) {
    .info-editor {
        font-size: 15px;
    }

        .info-editor h1 {
            font-size: 2rem;
        }

        .info-editor h2 {
            font-size: 1.5rem;
        }

        .info-editor h3 {
            font-size: 1.3rem;
        }

        .info-editor h4 {
            font-size: 1.15rem;
        }
}

.slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform .5s ease;
}

.slide {
    min-width: 100%;
    flex: 0 0 100%;
}

    .slide img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        display: block;
    }

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
}

    .dot.active {
        background: #f97316;
    }