﻿:root {
    --stfm-muted-text: #6c757d;
}
.stfm-panel {
    background-color: #ffffff;
    border: 1px solid var(--stfm-border-gray);
    border-radius: 0.375rem;
    padding: 1.75rem 2rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    height: 100%;
}

.stfm-panel-title {
    font-family: var(--stfm-heading-font);
    font-weight: 700;
    color: var(--stfm-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stfm-panel p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--stfm-text);
}

/* Right Panel Specific Styles */
.access-item p {
    line-height: 1.6;
    color: var(--stfm-primary);
}

.access-item i.fa-check {
    color: var(--stfm-secondary);
}

.access-item .small.text-muted {
    color: var(--stfm-muted-text) !important;
    line-height: 1.5;
    display: block;
}

    .access-item .small.text-muted a {
        color: var(--stfm-primary);
        font-weight: 600;
    }

        .access-item .small.text-muted a:hover {
            color: var(--stfm-secondary);
        }


/* Related resource link styling */
.related-resource .small.text-muted {
    color: var(--stfm-muted-text) !important;
}

    .related-resource .small.text-muted i {
        font-style: normal;
    }

    .related-resource .small.text-muted a.text-muted {
        /* Style defined globally */
    }


/* Ensure buttons in panels have appropriate margin */
.stfm-panel .stfm-action-button {
    margin-top: 0.5rem;
}

.stfm-panel .stfm-outline-button {
    border: 1px solid var(--stfm-primary) !important;
    color: var(--stfm-primary) !important;
    background-color: transparent;
}

    .stfm-panel .stfm-outline-button:hover {
        background-color: var(--stfm-primary) !important;
        color: white !important;
    }


/* Supplementary Content Component - Left Border Accent with Link Icon */
.supplementary-content {
    margin-top: 1.5rem;
}

.supplementary-content-inner {
    border-left: 3px solid var(--stfm-tertiary);
    padding: 0.75rem 0 0.75rem 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.supplementary-content .supplementary-label {
    font-style: italic;
    color: #6c757d;
    margin-right: 0.25rem;
}

.supplementary-content .supplementary-link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .supplementary-content .supplementary-link:hover {
        color: var(--stfm-primary);
        text-decoration: none;
    }

.supplementary-content .supplementary-link-icon {
    font-size: 0.7rem;
    margin-left: 0.375rem;
    opacity: 0.7;
}


/* Supplementary Content Component - Subtle Background Treatment */
.supplementary-content--background {
    margin-top: 1.5rem;
}

.supplementary-content-inner--background {
    background-color: #f8f9fa;
    padding: 0.875rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.supplementary-content--background .supplementary-label {
    font-style: italic;
    color: #6c757d;
    margin-right: 0.25rem;
}

.supplementary-content--background .supplementary-link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .supplementary-content--background .supplementary-link:hover {
        color: var(--stfm-primary);
        text-decoration: none;
    }

.supplementary-content--background .supplementary-link-icon {
    font-size: 0.7rem;
    margin-left: 0.375rem;
    opacity: 0.7;
}

/* Styled Bullet Section */
.styled-bullet-section {
    margin: 1rem 0;
}

.bullet-section-header {
    font-weight: 600;
    color: var(--stfm-primary) !important;
    margin-bottom: 0.65rem !important;
}

.styled-bullet-list li{
    font-size: .95rem;
}
/* Styled Bullet List - Icon Bullets (Chevron Right) */
.styled-bullet-list--icons {
    list-style: none;
    padding-left: 1rem; /* Added indentation */
    margin: 0;
}

    .styled-bullet-list--icons li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.55rem;
        line-height: 1.5;
    }

        .styled-bullet-list--icons li:before {
            content: "\f054"; /* fa-chevron-right */
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0.25rem;
            color: var(--stfm-tertiary);
            font-size: 0.625rem;
        }