/*
Theme Name: ILP Academy
Theme URI: https://www.ilpacademy.com
Author: ILP Academy Team
Author URI: https://www.ilpacademy.com
Description: A modern, responsive WordPress theme for educational institutions and online learning platforms. Features platform-independent course display, clean design, and Bootstrap 5 integration.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ilp-academy
Tags: education, courses, bootstrap, responsive, elearning, academy
*/

/* ==========================================================================
   Table of Contents
   ==========================================================================
   1.0 CSS Reset & Variables
   2.0 Typography
   3.0 WordPress Core Styles
   4.0 Header & Navigation
   5.0 Content Area
   6.0 Sidebar & Widgets
   7.0 Footer
   8.0 Homepage Specific Styles
   9.0 Course & Blog Styles
   10.0 Page Templates
   11.0 Comments
   12.0 Forms
   13.0 Responsive Styles
   14.0 WordPress Admin Bar Adjustment
   ========================================================================== */

/* ==========================================================================
   1.0 CSS Reset & Variables
   ========================================================================== */

/* Reset margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables */
:root {
    /* Colors */
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --gray-color: #95a5a6;
    --white: #ffffff;
    --black: #333333;
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.18);
}

/* HTML and Body */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

/* WordPress Alignment Classes */
.alignleft {
    float: left;
    margin-right: var(--space-md);
    margin-bottom: var(--space-sm);
}

.alignright {
    float: right;
    margin-left: var(--space-md);
    margin-bottom: var(--space-sm);
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* Clear floats */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* ==========================================================================
   2.0 Typography
   ========================================================================== */

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-md);
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

/* Paragraphs */
p {
    margin-bottom: var(--space-md);
}

/* Links */
a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Lists */
ul, ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

li {
    margin-bottom: var(--space-xs);
}

/* Blockquotes */
blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: var(--space-md);
    margin: var(--space-lg) 0;
    font-style: italic;
    color: var(--dark-color);
}

blockquote p {
    margin-bottom: var(--space-xs);
}

/* Code */
code {
    background-color: var(--light-color);
    padding: 2px 6px;
    border-radius: var(--border-radius-sm);
    font-family: monospace;
    font-size: 0.9em;
}

pre {
    background-color: var(--light-color);
    padding: var(--space-md);
    border-radius: var(--border-radius-md);
    overflow-x: auto;
    margin-bottom: var(--space-md);
}

/* ==========================================================================
   3.0 WordPress Core Styles
   ========================================================================== */

/* WordPress Gallery */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.gallery-item {
    flex: 1 0 auto;
}

/* WordPress Captions */
.wp-caption {
    max-width: 100%;
    margin-bottom: var(--space-md);
}

.wp-caption-text {
    font-size: 0.9em;
    font-style: italic;
    padding-top: var(--space-xs);
    text-align: center;
}

/* WordPress Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ==========================================================================
   4.0 Header & Navigation
   ========================================================================== */

/* Top Brand Header */
.brand-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
}

.brand-header a {
    color: var(--white);
    text-decoration: none;
}

.brand-header .site-url {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.brand-header .contact-info {
    font-size: 0.9rem;
    text-align: right;
}

.brand-header .contact-info i {
    margin-right: 5px;
}

/* Main Navigation */
.main-navigation {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}

.navbar-brand i {
    margin-right: 8px;
}

/* WordPress Menu Styling */
.main-navigation .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.main-navigation .menu li {
    position: relative;
    margin: 0;
}

.main-navigation .menu a {
    display: block;
    padding: 15px 20px;
    color: var(--dark-color);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.main-navigation .menu a:hover {
    color: var(--secondary-color);
    background-color: rgba(52, 152, 219, 0.05);
}

.main-navigation .menu .current-menu-item > a {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

/* Sub-menu Styling */
.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 1000;
}

.main-navigation .menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu li {
    width: 100%;
}

.main-navigation .sub-menu a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
}

/* ==========================================================================
   5.0 Content Area
   ========================================================================== */

/* Main Content Wrapper */
.site-content {
    padding: var(--space-xl) 0;
    min-height: 60vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--light-color);
    padding: 10px 0;
    margin-bottom: var(--space-lg);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--gray-color);
}

.breadcrumbs span {
    color: var(--dark-color);
}

.breadcrumbs .separator {
    margin: 0 8px;
    color: var(--gray-color);
}

/* ==========================================================================
   6.0 Sidebar & Widgets
   ========================================================================== */

/* Widget Area */
.widget-area {
    padding-left: var(--space-lg);
}

.widget {
    background-color: var(--white);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

/* Widget Lists */
.widget ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.widget li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.widget li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Search Widget */
.search-form {
    display: flex;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
}

.search-form button {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.search-form button:hover {
    background-color: var(--primary-color);
}

/* Calendar Widget */
#wp-calendar {
    width: 100%;
    text-align: center;
}

#wp-calendar caption {
    font-weight: bold;
    padding: 5px;
    background-color: var(--light-color);
}

#wp-calendar th,
#wp-calendar td {
    padding: 5px;
    border: 1px solid #ddd;
}

/* ==========================================================================
   7.0 Footer
   ========================================================================== */

.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-widget {
    color: #ddd;
}

.footer-widget h4 {
    color: var(--white);
    margin-bottom: var(--space-md);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.footer-widget ul {
    list-style: none;
    padding-left: 0;
}

.footer-widget li {
    margin-bottom: 8px;
}

.footer-widget a {
    color: #ddd;
    transition: color var(--transition-fast);
}

.footer-widget a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: var(--space-md);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.site-info {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

/* ==========================================================================
   8.0 Homepage Specific Styles
   ========================================================================== */

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.8)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: var(--space-xxl) 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
}

/* Featured Courses Section */
.featured-courses {
    padding: var(--space-xxl) 0;
    background-color: #f8f9fa;
}

.section-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Course Grid */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

/* ==========================================================================
   9.0 Course & Blog Styles
   ========================================================================== */

/* Course Cards */
.course-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    height: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.course-thumbnail {
    height: 200px;
    overflow: hidden;
}

.course-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.course-card:hover .course-thumbnail img {
    transform: scale(1.05);
}

.course-content {
    padding: var(--space-lg);
}

.course-content h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.platform-badge {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
}

/* Blog Posts */
.post {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.post:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.post-thumbnail {
    margin-bottom: var(--space-md);
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
}

.post-header {
    margin-bottom: var(--space-md);
}

.post-title {
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
}

.post-meta {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.post-meta span {
    margin-right: var(--space-sm);
}

.post-meta i {
    margin-right: 5px;
}

.post-content {
    margin-bottom: var(--space-md);
}

.read-more {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    transition: background-color var(--transition-fast);
}

.read-more:hover {
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: var(--space-xl);
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    background-color: var(--light-color);
    color: var(--dark-color);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.page-numbers.current {
    background-color: var(--secondary-color);
    color: var(--white);
}

.page-numbers:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
}

/* ==========================================================================
   10.0 Page Templates
   ========================================================================== */

/* About Page */
.about-section {
    padding: var(--space-xl) 0;
}

.team-member {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--space-md);
}

/* Contact Page */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-item {
    text-align: center;
    padding: var(--space-lg);
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
}

.contact-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: var(--space-sm);
}

.contact-form {
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

/* Course Single Page */
.course-single {
    padding: var(--space-xl) 0;
}

.course-sidebar {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.course-details {
    margin-bottom: var(--space-lg);
}

.course-details h4 {
    margin-bottom: var(--space-sm);
    color: var(--primary-color);
}

.course-details ul {
    list-style: none;
    padding-left: 0;
}

.course-details li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.course-details li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.enroll-button {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color var(--transition-fast);
}

.enroll-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}

/* ==========================================================================
   11.0 Comments
   ========================================================================== */

.comments-area {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.comments-title {
    margin-bottom: var(--space-lg);
}

.comment-list {
    list-style: none;
    padding-left: 0;
}

.comment {
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.comment-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: var(--space-sm);
}

.comment-meta {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: var(--space-sm);
}

.comment-content {
    margin-bottom: var(--space-sm);
}

.comment-reply-link {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.comment-respond {
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
}

/* ==========================================================================
   12.0 Forms
   ========================================================================== */

/* General Form Styles */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="search"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: var(--space-md);
}

/* Buttons */
button,
input[type="submit"],
input[type="button"],
.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--gray-color);
}

.btn-accent {
    background-color: var(--accent-color);
}

/* ==========================================================================
   13.0 Responsive Styles
   ========================================================================== */

/* Tablet Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        padding: var(--space-xl) 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .widget-area {
        padding-left: 0;
        margin-top: var(--space-xl);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    /* Header & Navigation */
    .brand-header .contact-info {
        text-align: center;
        margin-top: 10px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-navigation .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--white);
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: var(--shadow-md);
    }
    
    .main-navigation .menu.active {
        display: flex;
    }
    
    .main-navigation .menu li {
        width: 100%;
    }
    
    .main-navigation .menu a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .main-navigation .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
    }
    
    /* Hero Section */
    .hero-section {
        padding: var(--space-lg) 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    /* Course Grid */
    .course-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-widgets {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .course-content {
        padding: var(--space-md);
    }
    
    .post-title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   14.0 WordPress Admin Bar Adjustment
   ========================================================================== */

/* Adjust for WordPress Admin Bar */
.admin-bar .main-navigation {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .main-navigation {
        top: 46px;
    }
}

/* Print Styles */
@media print {
    .brand-header,
    .main-navigation,
    .footer,
    .social-links,
    .enroll-button,
    .comment-respond {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    a {
        color: #000;
        text-decoration: none;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* ==========================================================================
   End of style.css
   ========================================================================== */