/* Oakland Canvas Builder - Canvas Component Styles */
/* These styles will be applied to the components when pasted into Canvas */
/* Oakland City University Branding */
/* Primary Brand Color: #06357a */
/* Primary Button: #06367a with #e1b734 text */
/* Secondary Button: #6caedf with #06367a text */

/* Text Component */
.bc-text {
    margin: 1rem 0;
    line-height: 1.6;
}

.bc-text p {
    margin-bottom: 1rem;
}

/* Heading Component */
.bc-heading {
    color: #06357a;
    font-weight: 700;
    margin: 1.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #e1b734;
}

/* Button Component */
.bc-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #06367a;
    color: #e1b734 !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0.5rem 0;
}

.bc-button:hover {
    background: #052a61;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.bc-button-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #6caedf;
    color: #06367a !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0.5rem 0;
}

.bc-button-secondary:hover {
    background: #5a9ccf;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Blockquote Component */
.bc-blockquote {
    border-left: 4px solid #e1b734;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #f9f9f9;
    font-style: italic;
    color: #000;
}

.bc-blockquote p {
    margin: 0;
}

/* List Components */
.bc-list {
    margin: 1rem 0;
    padding-left: 2rem;
}

.bc-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Emphasis Box Component */
.bc-emphasis-box {
    background: #f0f5fa;
    border: 2px solid #6caedf;
    border-left: 6px solid #06357a;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.bc-emphasis-box strong {
    color: #06357a;
}

/* Course Header Component */
.bc-course-header {
    background: linear-gradient(135deg, #06357a 0%, #052a61 100%);
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
    margin: 0 0 2rem 0;
    border-radius: 8px;
}

.bc-course-header h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2.5rem;
    font-weight: 900;
    color: #e1b734;
}

.bc-course-header p {
    margin: 0;
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Navigation Component */
.bc-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background: #f0f5fa;
    border-radius: 4px;
    margin: 1rem 0;
}

.bc-nav a {
    padding: 0.5rem 1rem;
    background: #fff;
    color: #06367a !important;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #06357a;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bc-nav a:hover {
    background: #06357a;
    color: #e1b734 !important;
}

/* Tag Component */
.bc-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #e1b734;
    color: #06367a;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.25rem;
}

/* Divider Component */
.bc-divider {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #6caedf, transparent);
    margin: 2rem 0;
}

/* Video Component */
.bc-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 1.5rem 0;
}

.bc-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Image Component */
.bc-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem 0;
    border-radius: 4px;
}

/* Card Component */
.bc-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin: 1.5rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bc-card img {
    width: 100%;
    height: auto;
    display: block;
}

.bc-card-content {
    padding: 1.5rem;
}

.bc-card-content h3 {
    margin: 0 0 0.5rem 0;
    color: #06357a;
}

.bc-card-content p {
    margin: 0;
    color: #000;
}

/* Profile Component — photo left, details right */
.bc-profile {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bc-profile-photo {
    flex: 0 0 auto;
    min-width: 180px;
    max-width: 280px;
}

.bc-profile-photo img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.bc-profile-body {
    flex: 1 1 280px;
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.bc-profile-name {
    margin: 0 0 0.5rem 0;
    color: #06357a;
}

.bc-profile-meta {
    margin: 0 0 0.5rem 0;
    color: #000;
}

.bc-profile-bio {
    margin: 0.75rem 0 0 0;
    line-height: 1.5;
    color: #000;
}

@media (max-width: 600px) {
    .bc-profile {
        flex-direction: column;
    }
    .bc-profile-photo {
        max-width: 100%;
    }
    .bc-profile-body {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

/* Accordion Component */
.bc-accordion {
    margin: 1.5rem 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.bc-accordion-item {
    border-bottom: 1px solid #ddd;
}

.bc-accordion-item:last-child {
    border-bottom: 0;
}

.bc-accordion-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #f0f5fa;
    font-weight: 600;
    font-size: 1.05rem;
    color: #06357a;
    cursor: pointer;
    transition: all 0.3s ease;
    list-style: none;
    position: relative;
    padding-left: 3rem;
}

.bc-accordion-header::-webkit-details-marker {
    display: none;
}

.bc-accordion-header::before {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 1.5rem;
    color: #06357a;
    transition: transform 0.3s ease;
}

.bc-accordion-item[open] .bc-accordion-header::before {
    transform: rotate(180deg);
}

.bc-accordion-header:hover {
    background: #e0ebf5;
}

.bc-accordion-content {
    padding: 1.5rem;
    background: #fff;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Columns Component */
.bc-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
}

.bc-column {
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 4px;
}

.bc-column h3 {
    margin: 0 0 0.5rem 0;
    color: #06357a;
}

/* Table Component */
.bc-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border: 1px solid #ddd;
}

.bc-table th,
.bc-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #ddd;
}

.bc-table th {
    background: #06357a;
    color: #e1b734;
    font-weight: 600;
}

.bc-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.bc-table tbody tr:hover {
    background: #f0f0f0;
}

/* Progress Bar Component */
.bc-progress {
    width: 100%;
    height: 30px;
    background: #e9e9e9;
    border-radius: 15px;
    overflow: hidden;
    margin: 1.5rem 0;
}

.bc-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #06357a, #6caedf);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e1b734;
    font-weight: 600;
    transition: width 0.5s ease;
}

/* Checklist Component */
ul.bc-checklist {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

ul.bc-checklist li {
    display: block;
    padding: 0.75rem 0.75rem 0.75rem 3rem;
    margin-bottom: 0.5rem;
    background: #f0f5fa;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.05rem;
    border-left: 4px solid #e0ebf5;
}

ul.bc-checklist li:hover {
    background: #e0ebf5;
    border-left-color: #6caedf;
}

ul.bc-checklist li::before {
    content: "\f0c8";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    position: absolute;
    left: 0.75rem;
    font-size: 1.25rem;
    color: #06357a;
    transition: all 0.3s ease;
}

ul.bc-checklist li[aria-checked="true"] {
    background: #e8f4f8;
    border-left-color: #06357a;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    opacity: 0.85;
    color: #555;
}

ul.bc-checklist li[aria-checked="true"]::before {
    content: "\f14a";
    font-weight: 900;
    color: #06357a;
}

/* Popup Component */
.bc-popup-trigger {
    padding: 0.75rem 1.5rem;
    background: #6caedf;
    color: #06367a;
    border: 0;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bc-popup-trigger:hover {
    background: #5a9ccf;
}

/* Flashcard Component */
.bc-flashcard {
    perspective: 1000px;
    margin: 1.5rem 0;
}

.bc-flashcard-front,
.bc-flashcard-back {
    padding: 2rem;
    background: #fff;
    border: 2px solid #06357a;
    border-radius: 8px;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.bc-flashcard-back {
    background: #06357a;
    color: #e1b734;
    margin-top: 1rem;
}

/* Tabs Component */
.bc-tabs {
    margin: 1.5rem 0;
}

.bc-tab-headers {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #06357a;
    margin-bottom: 1rem;
}

.bc-tab-header {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.bc-tab-header:hover {
    color: #06357a;
}

.bc-tab-header.active {
    color: #06357a;
    border-bottom-color: #e1b734;
}

.bc-tab-content {
    display: none;
    padding: 1.5rem;
    background: #f0f5fa;
    border-radius: 4px;
}

.bc-tab-content.active {
    display: block;
}

/* Tooltip Component */
.bc-tooltip {
    position: relative;
    color: #06357a;
    font-weight: 600;
    cursor: help;
    border-bottom: 1px dotted #06357a;
}

.bc-tooltip:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: #06357a;
    color: #e1b734;
    font-size: 0.85rem;
    white-space: nowrap;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    z-index: 1000;
}

/* Title Visibility Classes */
.bc-title-hide {
    /* Trigger class - JavaScript uses this to detect and hide h1 */
}

.bc-title-hidden {
    display: none !important;
}

.bc-title-large {
    /* Trigger class - JavaScript uses this to detect and enlarge h1 */
}

.bc-title-big {
    font-size: 3rem !important;
    font-weight: 700;
}

@media (min-width: 768px) {
    .bc-title-big {
        font-size: 3.5rem !important;
    }
}

/* Tab Container - Sleek Tab System */
.bc-tab-container {
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.bc-tab-label {
    display: block;
    padding: 1.25rem 2rem;
    background: #ffffff;
    border-left: 4px solid #e0ebf5;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #06357a;
    margin: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f5fa;
}

.bc-tab-label:hover {
    background: #f0f5fa;
    border-left-color: #6caedf;
    padding-left: 2.25rem;
}

.bc-tab-selected {
    background: linear-gradient(90deg, #f0f5fa 0%, #ffffff 100%) !important;
    border-left-color: #06357a !important;
    border-left-width: 6px !important;
    color: #06357a !important;
    padding-left: 2rem !important;
}

.bc-tab-label + div {
    display: none;
    padding: 2rem;
    background: #ffffff;
    border-left: 4px solid #e1b734;
}

.bc-tab-label:last-of-type + div {
    border-bottom: none;
}

div.bc-tab-selected {
    display: block !important;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Flashcard Classes */
.bc-flash-card-small,
.bc-flash-card-large {
    perspective: 1000px;
    cursor: pointer;
    margin: 1.5rem 0;
    position: relative;
}

.bc-flash-card-small {
    width: 300px;
    height: 200px;
}

.bc-flash-card-large {
    width: 100%;
    max-width: 500px;
    height: 300px;
}

.bc-flash-card-small > div,
.bc-flash-card-large > div {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 8px;
    box-sizing: border-box;
}

.bc-flash-card-small > div:first-child,
.bc-flash-card-large > div:first-child {
    background: #06357a;
    color: #e1b734;
    border: 2px solid #06357a;
    z-index: 2;
    transform: rotateY(0deg);
}

.bc-flash-card-small > div:last-child,
.bc-flash-card-large > div:last-child {
    background: #f0f5fa;
    color: #06357a;
    border: 2px solid #06357a;
    transform: rotateY(180deg);
}

.bc-flash-card-small.bc-flip > div:first-child,
.bc-flash-card-large.bc-flip > div:first-child {
    transform: rotateY(-180deg);
}

.bc-flash-card-small.bc-flip > div:last-child,
.bc-flash-card-large.bc-flip > div:last-child {
    transform: rotateY(0deg);
}

/* Modal Classes */
.bc-modal-button {
    display: inline-block;
    margin: 0.5rem 0;
}

.bc-modal-button a {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #06367a;
    color: #e1b734 !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #06357a;
}

.bc-modal-button a:hover {
    background: #052a61;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.bc-modal-window {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.bc-modal-window.bc-modal-open {
    display: flex !important;
}

.bc-modal-window > div,
.bc-modal-window .bc-modal-inner {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    width: 90%;
    max-width: 1200px;
    max-height: 85vh;
    overflow: auto;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border: 2px solid #06357a;
}

.bc-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: none;
    border-radius: 4px;
    background: #e0ebf5;
    color: #06357a;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.bc-modal-close:hover {
    background: #06357a;
    color: #e1b734;
}

.bc-modal-inner h2 {
    padding-right: 2.5rem;
}

/* Tooltip Link Class */
.bc-tooltip-link {
    position: relative;
    color: #06357a;
    font-weight: 600;
    cursor: help;
    border-bottom: 1px dotted #06357a;
    text-decoration: none;
}

.bc-tooltip-link .bc-tooltip {
    visibility: hidden;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: #06357a;
    color: #e1b734;
    font-size: 0.85rem;
    font-weight: normal;
    white-space: nowrap;
    border-radius: 4px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.bc-tooltip-link:hover .bc-tooltip {
    visibility: visible;
    opacity: 1;
}

/* Callout / Alert variants */
.bc-callout { padding: 1.25rem 1.5rem; margin: 1.5rem 0; border-radius: 6px; border-left: 5px solid; }
.bc-callout-title { margin: 0 0 0.5rem; font-size: 1.1rem; }
.bc-callout p { margin: 0; line-height: 1.6; }
.bc-callout-info { background: #e8f4fd; border-left-color: #0d6efd; }
.bc-callout-info .bc-callout-title { color: #0a58ca; }
.bc-callout-warning { background: #fff8e6; border-left-color: #d4a800; }
.bc-callout-warning .bc-callout-title { color: #856404; }
.bc-callout-success { background: #e8f5e9; border-left-color: #198754; }
.bc-callout-success .bc-callout-title { color: #0f5132; }
.bc-callout-tip { background: #f0f5fa; border-left-color: #6caedf; }
.bc-callout-tip .bc-callout-title { color: #06357a; }

.bc-objectives { margin: 1.5rem 0; }
.bc-objectives-intro { margin-bottom: 0.75rem; font-weight: 500; color: #06357a; }
.bc-objectives .bc-list { margin: 0; }

.bc-keyterms { margin: 1.5rem 0; }
.bc-keyterms-list { margin: 0; padding: 0; list-style: none; }
.bc-keyterms-list dt { font-weight: 700; color: #06357a; margin-top: 1rem; margin-bottom: 0.25rem; }
.bc-keyterms-list dt:first-child { margin-top: 0; }
.bc-keyterms-list dd { margin: 0 0 0 1.25rem; line-height: 1.6; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(6, 53, 122, 0.1); }
.bc-keyterms-list dd:last-of-type { border-bottom: none; }

.bc-codeblock { margin: 1.5rem 0; border-radius: 6px; overflow: hidden; border: 1px solid #dee2e6; }
.bc-codeblock-label { font-size: 0.8rem; font-weight: 600; color: #6b7280; padding: 0.5rem 1rem; background: #f3f4f6; border-bottom: 1px solid #dee2e6; }
.bc-codeblock-content { margin: 0; padding: 1rem 1.25rem; background: #1e1e1e; color: #d4d4d4; font-family: 'Consolas', 'Monaco', monospace; font-size: 0.9rem; line-height: 1.5; overflow-x: auto; }
.bc-codeblock-content code { background: none; padding: 0; color: inherit; }

.bc-resource-card { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.5rem; margin: 1.5rem 0; background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px; }
.bc-resource-card-img { width: 160px; min-width: 160px; height: 90px; object-fit: cover; border-radius: 6px; }
.bc-resource-icon { font-size: 2.5rem; color: #06357a; }
.bc-resource-body { flex: 1; }
.bc-resource-body h3 { margin: 0 0 0.5rem; font-size: 1.2rem; color: #06357a; }
.bc-resource-body p { margin: 0 0 0.75rem; line-height: 1.5; color: #374151; }

.bc-steps { margin: 1.5rem 0; }
.bc-steps-list { margin: 0; padding-left: 1.5rem; list-style: none; counter-reset: step; }
.bc-steps-list li { position: relative; margin-bottom: 0.75rem; padding-left: 0.5rem; line-height: 1.6; }
.bc-steps-list li::before { counter-increment: step; content: counter(step); position: absolute; left: -2rem; width: 1.5rem; height: 1.5rem; background: #06357a; color: #e1b734; border-radius: 50%; font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }

.bc-stats { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 1.5rem 0; }
.bc-stat { text-align: center; padding: 1rem 1.5rem; min-width: 100px; background: #f0f5fa; border-radius: 8px; border-top: 4px solid #06357a; }
.bc-stat-number { display: block; font-size: 2rem; font-weight: 800; color: #06357a; line-height: 1.2; }
.bc-stat-label { font-size: 0.9rem; color: #4b5563; }

.bc-faq { margin: 1.5rem 0; }
.bc-faq-item { margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid #e5e7eb; }
.bc-faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.bc-faq-q { margin: 0 0 0.35rem; color: #06357a; }
.bc-faq-a { margin: 0; padding-left: 1rem; border-left: 3px solid #e1b734; line-height: 1.6; }

.bc-timeline { margin: 1.5rem 0; }
.bc-timeline-item { display: flex; gap: 1.25rem; margin-bottom: 1rem; }
.bc-timeline-item:last-child { margin-bottom: 0; }
.bc-timeline-marker { flex-shrink: 0; font-weight: 700; color: #06357a; min-width: 5rem; }
.bc-timeline-content { flex: 1; }
.bc-timeline-content p { margin: 0; line-height: 1.6; }

.bc-prerequisites { padding: 1.25rem 1.5rem; margin: 1.5rem 0; background: #fef9e7; border-left: 5px solid #e1b734; border-radius: 4px; }
.bc-prerequisites-title { margin: 0 0 0.5rem; color: #06357a; font-size: 1.2rem; }
.bc-prerequisites p { margin: 0 0 0.5rem; }
.bc-prerequisites .bc-list { margin: 0; }

.bc-quote-attribution { margin: 1.5rem 0; padding: 1.25rem 1.5rem; background: #f9f9f9; border-left: 4px solid #e1b734; font-style: italic; }
.bc-quote-attribution p { margin: 0 0 0.5rem; }
.bc-quote-attribution cite { display: block; font-style: normal; font-size: 0.95rem; color: #6b7280; }

.bc-comparison { margin: 1.5rem 0; }
.bc-comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1rem; }
.bc-comparison-col { padding: 1.25rem; background: #f8f9fa; border-radius: 8px; border: 1px solid #e9ecef; }
.bc-comparison-col h3 { margin: 0 0 0.5rem; font-size: 1.1rem; color: #06357a; }
.bc-comparison-col p { margin: 0; line-height: 1.6; }

.bc-icon-row { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 1.5rem 0; align-items: center; }
.bc-icon-row-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; }
.bc-icon-row-icon { font-size: 1.5rem; color: #06357a; }

.bc-announcement { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; margin: 1.5rem 0; background: linear-gradient(90deg, #06357a 0%, #052a61 100%); color: #fff; border-radius: 6px; }
.bc-announcement-icon { font-size: 1.5rem; color: #e1b734; }
.bc-announcement-body { flex: 1; }

/* Responsive Design */
@media (max-width: 768px) {
    .bc-course-header h1 {
        font-size: 1.8rem;
    }
    
    .bc-course-header p {
        font-size: 1rem;
    }
    
    .bc-nav {
        flex-direction: column;
    }
    
    .bc-nav a {
        text-align: center;
    }
    
    .bc-columns {
        grid-template-columns: 1fr;
    }
    
    .bc-tab-headers {
        flex-direction: column;
    }
    
    .bc-flash-card-small,
    .bc-flash-card-large {
        width: 100%;
        height: 250px;
    }
    
    .bc-title-big {
        font-size: 2rem !important;
    }
    .bc-comparison-grid { grid-template-columns: 1fr; }
    .bc-stats { justify-content: center; }
}
