@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700&family=Cabin:wght@400;600&display=swap');

:root {
    --wv6-primary: #b45309;
    --wv6-secondary: #92400e;
    --wv6-accent: #6366f1;
    --wv6-background: #fffbeb;
    --wv6-text: #451a03;
    --wv6-muted: #fcd34d;
    --wv6-white: #ffffff;
    --wv6-black: #000000;
    --wv6-success: #10b981;
    --wv6-error: #ef4444;
    --rx-section-spacing-desktop: 100px;
    --rx-section-spacing-mobile: 60px;
    --rx-container-max-width: 1200px;
    --rx-border-radius: 8px;
    --rx-transition-duration: 0.3s;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cabin', sans-serif;
    color: var(--wv6-text);
    background-color: var(--wv6-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--wv6-primary);
    color: var(--wv6-white);
}

a {
    color: var(--wv6-primary);
    text-decoration: none;
    transition: color var(--rx-transition-duration) ease;
}

a:hover {
    color: var(--wv6-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.rx-container {
    max-width: var(--rx-container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.rx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.rx-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rx-text-center {
    text-align: center;
}

.rx-py-section {
    padding-top: var(--rx-section-spacing-desktop);
    padding-bottom: var(--rx-section-spacing-desktop);
}

.rx-pb-section {
    padding-bottom: var(--rx-section-spacing-desktop);
}

.rx-pt-section {
    padding-top: var(--rx-section-spacing-desktop);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo', sans-serif;
    color: var(--wv6-text);
    line-height: 1.2;
    margin-bottom: 0.75em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--wv6-primary);
}

p {
    margin-bottom: 1em;
}

/* Buttons */
.rx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: var(--rx-border-radius);
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--rx-transition-duration) ease;
    min-width: 150px;
    text-align: center;
}

.rx-btn-primary {
    background: linear-gradient(135deg, var(--wv6-primary) 0%, var(--wv6-secondary) 100%);
    color: var(--wv6-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.rx-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.rx-btn-secondary {
    background-color: var(--wv6-accent);
    color: var(--wv6-white);
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
}

.rx-btn-secondary:hover {
    background-color: #5154d8;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(99, 102, 241, 0.4);
}

.rx-btn-outline {
    background-color: transparent;
    color: var(--wv6-primary);
    border-color: var(--wv6-primary);
}

.rx-btn-outline:hover {
    background-color: var(--wv6-primary);
    color: var(--wv6-white);
}

/* Form Styling */
.rx-form-group {
    margin-bottom: 1.5rem;
}

.rx-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--wv6-text);
}

.rx-form-group input[type='text'],
.rx-form-group input[type='email'],
.rx-form-group input[type='tel'],
.rx-form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--wv6-muted);
    border-radius: var(--rx-border-radius);
    font-family: 'Cabin', sans-serif;
    font-size: 1rem;
    color: var(--wv6-text);
    background-color: var(--wv6-white);
    transition: border-color var(--rx-transition-duration) ease, box-shadow var(--rx-transition-duration) ease;
}

.rx-form-group input[type='text']:focus,
.rx-form-group input[type='email']:focus,
.rx-form-group input[type='tel']:focus,
.rx-form-group textarea:focus {
    outline: none;
    border-color: var(--wv6-primary);
    box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.2);
}

.rx-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.rx-form-message {
    padding: 1rem;
    border-radius: var(--rx-border-radius);
    margin-top: 1rem;
    font-weight: 600;
    display: none;
}

.rx-form-message.success {
    background-color: #d1fae5;
    color: var(--wv6-success);
    border: 1px solid var(--wv6-success);
}

.rx-form-message.error {
    background-color: #fee2e2;
    color: var(--wv6-error);
    border: 1px solid var(--wv6-error);
}

.rx-form-message.sending {
    background-color: #dbeafe;
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

/* Header & Navigation */
.rx-header {
    background-color: var(--wv6-background);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.rx-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rx-logo {
    font-family: 'Archivo', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--wv6-primary);
    letter-spacing: -0.05em;
}

.rx-logo span {
    color: var(--wv6-accent);
}

.rx-nav-menu {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.rx-nav-menu li a {
    color: var(--wv6-text);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 0.2rem 0;
}

.rx-nav-menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--wv6-primary);
    transition: width var(--rx-transition-duration) ease;
}

.rx-nav-menu li a:hover::after {
    width: 100%;
}

.rx-nav-cta {
    margin-left: 2rem;
}

.rx-hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.rx-hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--wv6-text);
    transition: all var(--rx-transition-duration) ease;
    border-radius: 2px;
}

.rx-hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.rx-hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.rx-hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.rx-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--wv6-background);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right var(--rx-transition-duration) ease-in-out;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    z-index: 999;
}

.rx-mobile-nav.active {
    right: 0;
}

.rx-mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rx-mobile-nav-list li a {
    color: var(--wv6-text);
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--wv6-muted);
}

.rx-mobile-nav-list li:last-child a {
    border-bottom: none;
}

/* Hero Section */
.rx-hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://picsum.photos/seed/courses-hero/1400/800');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wv6-white);
    text-align: center;
    position: relative;
}

.rx-hero-content {
    max-width: 900px;
    padding: 2rem;
}

.rx-hero h1 {
    color: var(--wv6-white);
    margin-bottom: 1rem;
}

.rx-hero p {
    font-size: 1.35rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Section Styling */
.rx-section:nth-child(even) {
    background-color: var(--wv6-background);
}

.rx-section:nth-child(odd) {
    background-color: var(--wv6-white);
}

.rx-section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rx-section-header h2 {
    margin-bottom: 1rem;
}

.rx-section-header p {
    font-size: 1.15rem;
    color: #6b7280;
}

/* Card Components */
.rx-card {
    background-color: var(--wv6-white);
    border-radius: var(--rx-border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    transition: transform var(--rx-transition-duration) ease, box-shadow var(--rx-transition-duration) ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.rx-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.rx-card-image {
    border-radius: var(--rx-border-radius);
    margin-bottom: 1.5rem;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.rx-card h3 {
    color: var(--wv6-primary);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.rx-card p {
    font-size: 0.95rem;
    color: #4a5568;
    flex-grow: 1;
}

.rx-card-icon {
    font-size: 2.5rem;
    color: var(--wv6-accent);
    margin-bottom: 1.5rem;
}

.rx-card-footer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rx-card-footer .rx-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--wv6-secondary);
}

.rx-tag {
    display: inline-block;
    background-color: var(--wv6-muted);
    color: var(--wv6-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Trust Elements */
.rx-trust-item {
    display: inline-flex;
    align-items: center;
    background-color: var(--wv6-white);
    border-radius: var(--rx-border-radius);
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: var(--wv6-text);
    transition: transform var(--rx-transition-duration) ease;
}

.rx-trust-item:hover {
    transform: translateY(-3px);
}

.rx-trust-item svg {
    color: var(--wv6-primary);
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

/* FAQ Accordion */
.rx-faq-item {
    background-color: var(--wv6-white);
    border-radius: var(--rx-border-radius);
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all var(--rx-transition-duration) ease;
}

.rx-faq-q {
    padding: 1.2rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--wv6-text);
    position: relative;
}

.rx-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--wv6-primary);
    transition: transform var(--rx-transition-duration) ease;
}

.rx-faq-item.active .rx-faq-q::after {
    transform: rotate(45deg);
}

.rx-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--rx-transition-duration) ease-out;
    padding: 0 2rem;
    color: #4a5568;
}

.rx-faq-item.active .rx-faq-a {
    max-height: 500px; /* Ample space for content */
    padding-bottom: 1.5rem;
}

/* Testimonials */
.rx-testimonial-card {
    background-color: var(--wv6-white);
    border-radius: var(--rx-border-radius);
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rx-testimonial-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.rx-testimonial-card .rx-author {
    font-weight: 700;
    color: var(--wv6-primary);
    margin-top: 0.5rem;
}

.rx-testimonial-card .rx-author-title {
    font-size: 0.9rem;
    color: #6b7280;
}

.rx-testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--wv6-primary);
}

/* Visual Separators */
.rx-separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--wv6-primary), var(--wv6-accent));
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* Footer */
.rx-footer {
    background-color: var(--wv6-text);
    color: var(--wv6-white);
    padding: var(--rx-section-spacing-desktop) 0 2rem;
    font-size: 0.95rem;
}

.rx-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.rx-footer-col h4 {
    color: var(--wv6-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.rx-footer-col p, .rx-footer-col address {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.rx-footer-col ul {
    list-style: none;
}

.rx-footer-col ul li {
    margin-bottom: 0.8rem;
}

.rx-footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--rx-transition-duration) ease;
}

.rx-footer-col ul li a:hover {
    color: var(--wv6-primary);
}

.rx-footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.rx-footer .rx-logo {
    color: var(--wv6-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Animations */
.rx-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.rx-animate.rx-animated {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styling */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    .rx-nav-menu {
        gap: 1.5rem;
    }
    .rx-hero p {
        font-size: 1.15rem;
    }
    .rx-py-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .rx-nav-menu, .rx-nav-cta {
        display: none;
    }
    .rx-hamburger-menu {
        display: flex;
    }
    .rx-hero h1 {
        font-size: 2.5rem;
    }
    .rx-hero p {
        font-size: 1rem;
    }
    .rx-grid {
        grid-template-columns: 1fr;
    }
    .rx-footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .rx-section-header {
        margin-bottom: 2.5rem;
    }
    .rx-py-section {
        padding-top: var(--rx-section-spacing-mobile);
        padding-bottom: var(--rx-section-spacing-mobile);
    }
    .rx-pb-section {
        padding-bottom: var(--rx-section-spacing-mobile);
    }
    .rx-pt-section {
        padding-top: var(--rx-section-spacing-mobile);
    }
    .rx-mobile-nav-list li a {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .rx-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        min-width: unset;
    }
    .rx-hero-content {
        padding: 1.5rem;
    }
    .rx-card {
        padding: 1.5rem;
    }
    .rx-faq-q {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    .rx-faq-a {
        padding: 0 1.5rem;
    }
    .rx-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .rx-footer-col ul {
        padding-left: 0;
    }
    .rx-footer-col ul li a {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }
    .rx-footer-col .rx-logo {
        text-align: center;
        width: 100%;
    }
    .rx-footer-col address p {
        word-wrap: break-word;
    }
}

/* Specific Section Styles */
.rx-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.rx-step-card {
    background-color: var(--wv6-white);
    border-radius: var(--rx-border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform var(--rx-transition-duration) ease, box-shadow var(--rx-transition-duration) ease;
    border-bottom: 5px solid var(--wv6-primary);
}

.rx-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.rx-step-icon {
    font-size: 3rem;
    color: var(--wv6-accent);
    margin-bottom: 1rem;
}

.rx-step-card h3 {
    font-size: 1.5rem;
    color: var(--wv6-secondary);
    margin-bottom: 0.75rem;
}

.rx-instructor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.rx-instructor-card {
    background-color: var(--wv6-white);
    border-radius: var(--rx-border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    text-align: center;
    transition: transform var(--rx-transition-duration) ease, box-shadow var(--rx-transition-duration) ease;
}

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

.rx-instructor-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--wv6-accent);
}

.rx-instructor-card h4 {
    margin-bottom: 0.5rem;
    color: var(--wv6-primary);
}

.rx-instructor-card p {
    font-size: 0.9rem;
    color: #4a5568;
}

.rx-cta-banner {
    background: linear-gradient(135deg, var(--wv6-primary) 0%, var(--wv6-secondary) 100%);
    color: var(--wv6-white);
    text-align: center;
    padding: 4rem 2rem;
    border-radius: var(--rx-border-radius);
}

.rx-cta-banner h2 {
    color: var(--wv6-white);
    margin-bottom: 1.5rem;
}

.rx-cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.rx-cta-banner .rx-btn {
    background-color: var(--wv6-accent);
    border-color: var(--wv6-accent);
    color: var(--wv6-white);
}

.rx-cta-banner .rx-btn:hover {
    background-color: #5154d8;
    border-color: #5154d8;
}

.rx-feature-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rx-feature-highlight-grid:nth-child(even) .rx-feature-content {
    order: 1;
}

.rx-feature-highlight-grid:nth-child(even) .rx-feature-image {
    order: 2;
}

.rx-feature-highlight-grid .rx-feature-content h3 {
    color: var(--wv6-primary);
    margin-bottom: 1rem;
}

.rx-feature-highlight-grid .rx-feature-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.rx-feature-highlight-grid .rx-feature-image img {
    border-radius: var(--rx-border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.rx-form-section {
    background-color: var(--wv6-white);
    padding: var(--rx-section-spacing-desktop) 0;
}

.rx-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--wv6-white);
    border-radius: var(--rx-border-radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    padding: 3rem;
}

.rx-form-wrapper h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--wv6-secondary);
}

.rx-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.rx-contact-info-item {
    background-color: var(--wv6-background);
    border-radius: var(--rx-border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.rx-contact-info-item svg {
    font-size: 2.5rem;
    color: var(--wv6-primary);
    margin-bottom: 1rem;
}

.rx-contact-info-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--wv6-text);
}

.rx-contact-info-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.5;
}

.rx-contact-info-item a {
    color: var(--wv6-accent);
    font-weight: 600;
}

/* Blog/Article Cards for Curriculm Breakdown */
.rx-course-module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.rx-module-card {
    background-color: var(--wv6-white);
    border-radius: var(--rx-border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform var(--rx-transition-duration) ease, box-shadow var(--rx-transition-duration) ease;
}

.rx-module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.rx-module-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.rx-module-content {
    padding: 1.5rem;
}

.rx-module-content h4 {
    color: var(--wv6-primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.rx-module-content p {
    font-size: 0.95rem;
    color: #4a5568;
}

.rx-module-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 1rem;
}

.rx-module-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rx-module-meta svg {
    color: var(--wv6-accent);
}
