/**
 * Custom Post Type Templates Styles
 * 
 * Styles for Course, Instructor, Event, and Program templates
 * 
 * @package Fennaver_Education
 * @since 1.0.0
 */

/* ================================================
   Course Templates
   ================================================ */

/* Course Single Page */
.course-single .course-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    margin-bottom: 40px;
    color: #fff;
}

.course-single .course-hero-content {
    padding-right: 30px;
}

.course-single .course-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-single .course-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.course-single .course-hero p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}

.course-single .course-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.course-single .course-meta-row .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
}

.course-single .course-meta-row .meta-item i {
    font-size: 18px;
    opacity: 0.9;
}

.course-single .course-thumbnail {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.course-single .course-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.course-single .course-content-area {
    padding: 50px 0;
}

.course-single .course-main-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.course-single .learning-outcomes {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.course-single .learning-outcomes h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.course-single .outcomes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-single .outcomes-list li {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.course-single .outcomes-list li:last-child {
    border-bottom: none;
}

.course-single .outcomes-list i {
    color: #28a745;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.course-single .outcomes-list strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
}

.course-single .outcomes-list p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.course-single .course-prerequisites {
    margin-top: 30px;
    padding: 25px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.course-single .course-prerequisites h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #856404;
}

.course-single .prerequisites-content {
    color: #856404;
    line-height: 1.6;
}

.course-single .course-sidebar {
    position: sticky;
    top: 20px;
}

.course-single .course-enroll-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
}

.course-single .course-enroll-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.course-single .btn-enroll {
    display: inline-block;
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 25px;
    border: none;
}

.course-single .btn-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: #fff;
}

.course-single .course-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.course-single .course-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.course-single .course-features li:last-child {
    border-bottom: none;
}

.course-single .course-features i {
    color: #667eea;
    font-size: 16px;
    flex-shrink: 0;
}

/* Course Archive */
.archive-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
}

.archive-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.archive-description {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.courses-grid {
    margin-bottom: 40px;
}

.course-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.course-card .course-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.course-card .course-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-thumb img {
    transform: scale(1.05);
}

.course-card .course-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-card .course-category {
    display: inline-block;
    background: #667eea;
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.course-card .course-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.course-card .course-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.course-card .course-title a:hover {
    color: #667eea;
}

.course-card .course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
    color: #666;
}

.course-card .course-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-card .course-meta i {
    color: #667eea;
}

.course-card .btn-enroll,
.course-card .btn-view-course {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: background 0.3s ease;
    margin-top: auto;
}

.course-card .btn-enroll:hover,
.course-card .btn-view-course:hover {
    background: #5568d3;
    color: #fff;
}

/* ================================================
   Instructor Templates
   ================================================ */

/* Instructor Single */
.instructor-single .instructor-hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 60px 0;
    margin-bottom: 40px;
    color: #fff;
}

.instructor-single .instructor-photo {
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.instructor-single .instructor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-single .instructor-name {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.instructor-single .instructor-specialization {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 15px;
    font-weight: 500;
}

.instructor-single .instructor-experience {
    font-size: 16px;
    margin-bottom: 20px;
}

.instructor-single .instructor-experience i {
    margin-right: 8px;
}

.instructor-single .instructor-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.instructor-single .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.instructor-single .contact-item:hover {
    opacity: 0.8;
    color: #fff;
}

.instructor-single .instructor-social {
    display: flex;
    gap: 15px;
}

.instructor-single .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s ease;
}

.instructor-single .social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.instructor-single .instructor-content-area {
    padding: 50px 0;
}

.instructor-single .instructor-bio {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.instructor-single .instructor-bio h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.instructor-single .bio-content {
    line-height: 1.8;
    color: #555;
}

.instructor-single .instructor-courses {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.instructor-single .instructor-courses h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.instructor-single .courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.instructor-single .instructor-sidebar {
    position: sticky;
    top: 20px;
}

.instructor-single .instructor-info-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.instructor-single .instructor-info-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 15px;
    border-bottom: 2px solid #f093fb;
}

.instructor-single .info-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.instructor-single .info-item:last-child {
    border-bottom: none;
}

.instructor-single .info-item strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.instructor-single .info-item a {
    color: #f5576c;
    text-decoration: none;
}

.instructor-single .info-item a:hover {
    text-decoration: underline;
}

/* Instructor Archive */
.instructors-grid {
    margin-bottom: 40px;
}

.instructor-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    text-align: center;
    padding: 30px 20px;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.instructor-card .instructor-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #f093fb;
}

.instructor-card .instructor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-card .instructor-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.instructor-card .instructor-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.instructor-card .instructor-name a:hover {
    color: #f5576c;
}

.instructor-card .instructor-specialization {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.instructor-card .instructor-experience {
    color: #888;
    font-size: 13px;
    margin-bottom: 15px;
}

.instructor-card .btn-view-profile {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.instructor-card .btn-view-profile:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* ================================================
   Event Templates
   ================================================ */

/* Event Single */
.event-single .event-hero {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    padding: 60px 0;
    margin-bottom: 40px;
}

.event-single .event-featured-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.event-single .event-featured-image img {
    width: 100%;
    height: auto;
}

.event-single .event-hero-content {
    text-align: center;
    color: #fff;
}

.event-single .event-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.event-single .event-meta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
}

.event-single .event-meta-row .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
}

.event-single .event-meta-row .meta-item i {
    font-size: 18px;
}

.event-single .event-content-area {
    padding: 50px 0;
}

.event-single .event-main-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.event-single .event-main-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.event-single .event-sidebar {
    position: sticky;
    top: 20px;
}

.event-single .event-info-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.event-single .event-info-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 15px;
    border-bottom: 2px solid #fa709a;
}

.event-single .info-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.event-single .info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.event-single .info-item strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
}

.event-single .event-register-btn {
    margin-top: 25px;
}

.event-single .btn-register {
    display: inline-block;
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-single .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(250, 112, 154, 0.4);
    color: #fff;
}

/* Event Archive */
.events-list {
    margin-bottom: 40px;
}

.event-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    padding: 25px;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.event-card .event-thumb {
    border-radius: 8px;
    overflow: hidden;
}

.event-card .event-thumb img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.event-card:hover .event-thumb img {
    transform: scale(1.05);
}

.event-card .event-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.event-card .event-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-card .event-title a:hover {
    color: #fa709a;
}

.event-card .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #666;
}

.event-card .event-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-card .event-meta i {
    color: #fa709a;
}

.event-card .event-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.event-card .btn-view-event,
.event-card .btn-register {
    flex: 1;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.event-card .btn-view-event {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #e0e0e0;
}

.event-card .btn-view-event:hover {
    background: #e9ecef;
    color: #333;
}

.event-card .btn-register {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #fff;
}

.event-card .btn-register:hover {
    opacity: 0.9;
    color: #fff;
}

/* ================================================
   Program Templates
   ================================================ */

/* Program Single */
.program-single .program-hero {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 60px 0;
    margin-bottom: 40px;
    color: #fff;
}

.program-single .program-hero-content {
    padding-right: 30px;
}

.program-single .program-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.program-single .program-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.program-single .program-meta-row .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
}

.program-single .program-meta-row .meta-item i {
    font-size: 18px;
}

.program-single .program-thumbnail {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.program-single .program-thumbnail img {
    width: 100%;
    height: auto;
}

.program-single .program-content-area {
    padding: 50px 0;
}

.program-single .program-main-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.program-single .program-main-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.program-single .program-courses {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.program-single .program-courses h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.program-single .courses-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.program-single .course-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.program-single .course-item:hover {
    background: #e9ecef;
}

.program-single .course-item .course-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
}

.program-single .course-item .course-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-single .course-item .course-content {
    flex: 1;
}

.program-single .course-item .course-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.program-single .course-item .course-title a {
    color: #333;
    text-decoration: none;
}

.program-single .course-item .course-title a:hover {
    color: #4facfe;
}

.program-single .program-sidebar {
    position: sticky;
    top: 20px;
}

.program-single .program-info-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.program-single .program-info-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 15px;
    border-bottom: 2px solid #4facfe;
}

.program-single .info-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.program-single .info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.program-single .info-item strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
}

.program-single .program-brochure {
    margin-top: 25px;
}

.program-single .btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-single .btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
    color: #fff;
}

/* Program Archive */
.programs-grid {
    margin-bottom: 40px;
}

.program-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    padding: 20px;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.program-card .program-thumb {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.program-card .program-thumb img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.program-card:hover .program-thumb img {
    transform: scale(1.05);
}

.program-card .program-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.program-card .program-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.program-card .program-title a:hover {
    color: #4facfe;
}

.program-card .program-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
    color: #666;
}

.program-card .program-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.program-card .program-meta i {
    color: #4facfe;
}

.program-card .btn-view-program {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    background: #4facfe;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: background 0.3s ease;
    margin-top: 15px;
}

.program-card .btn-view-program:hover {
    background: #3a9de8;
    color: #fff;
}

/* ================================================
   Pagination
   ================================================ */

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
    background: #667eea;
    border-color: #667eea;
    color: #fff;
}

.pagination .page-numbers.current {
    background: #667eea;
    border-color: #667eea;
    color: #fff;
}

.pagination .page-numbers.dots {
    border: none;
    pointer-events: none;
}

/* ================================================
   No Results
   ================================================ */

.no-results {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.no-results h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.no-results p {
    font-size: 18px;
    color: #666;
}

/* ================================================
   Responsive Design
   ================================================ */

@media (max-width: 991px) {
    .course-single .course-title,
    .instructor-single .instructor-name,
    .event-single .event-title,
    .program-single .program-title {
        font-size: 32px;
    }
    
    .archive-title {
        font-size: 32px;
    }
    
    .course-single .course-hero-content,
    .program-single .program-hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .instructor-single .instructor-photo {
        width: 200px;
        height: 200px;
        margin-bottom: 30px;
    }
    
    .course-single .course-sidebar,
    .instructor-single .instructor-sidebar,
    .event-single .event-sidebar,
    .program-single .program-sidebar {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .course-single .course-hero,
    .instructor-single .instructor-hero,
    .event-single .event-hero,
    .program-single .program-hero {
        padding: 40px 0;
    }
    
    .course-single .course-title,
    .instructor-single .instructor-name,
    .event-single .event-title,
    .program-single .program-title {
        font-size: 28px;
    }
    
    .archive-title {
        font-size: 28px;
    }
    
    .course-single .course-main-content,
    .instructor-single .instructor-bio,
    .instructor-single .instructor-courses,
    .event-single .event-main-content,
    .program-single .program-main-content,
    .program-single .program-courses {
        padding: 25px;
    }
    
    .course-single .course-enroll-box,
    .instructor-single .instructor-info-box,
    .event-single .event-info-box,
    .program-single .program-info-box {
        padding: 20px;
    }
    
    .course-card,
    .instructor-card,
    .event-card,
    .program-card {
        margin-bottom: 20px;
    }
    
    .event-card .event-actions {
        flex-direction: column;
    }
    
    .program-single .course-item {
        flex-direction: column;
    }
    
    .program-single .course-item .course-thumb {
        width: 100%;
        height: 180px;
    }
}

@media (max-width: 575px) {
    .course-single .course-meta-row,
    .event-single .event-meta-row,
    .program-single .program-meta-row {
        gap: 15px;
    }
    
    .instructor-single .instructor-photo {
        width: 150px;
        height: 150px;
    }
    
    .instructor-card .instructor-photo {
        width: 120px;
        height: 120px;
    }
    
    .pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 14px;
    }
}
