/*
Theme Name: MultiplicaAi
Description: Um tema WordPress completo para o blog MultiplicaAi sobre renda extra, dinheiro inteligente e liberdade financeira. Fiel ao design original.
Version: 1.0
Author: MultiplicaAi
Text Domain: multiplicaai
*/

/* Reset e base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

/* Variables CSS - Cores exatas do original */
:root {
    --blog-blue: #3182ce;
    --blog-light-blue: #ebf8ff;
    --blog-dark-blue: #2c5282;
    --gray-50: #f7fafc;
    --gray-100: #edf2f7;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e0;
    --gray-400: #a0aec0;
    --gray-500: #718096;
    --gray-600: #4a5568;
    --gray-700: #2d3748;
    --gray-800: #1a202c;
    --gray-900: #171923;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    z-index: 1000;
}

@media (min-width: 768px) {
    .site-header {
        position: sticky;
        top: 0;
    }
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

@media (min-width: 768px) {
    .header-main {
        padding: 1rem 0;
    }
}

.site-logo {
    height: 40px;
    width: auto;
}

@media (min-width: 768px) {
    .site-logo {
        height: 48px;
    }
}

.main-navigation ul {
    display: none;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

@media (min-width: 768px) {
    .main-navigation ul {
        display: flex;
    }
}

.main-navigation a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--blog-blue);
}

/* Mobile Controls */
.mobile-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .mobile-controls {
        display: none;
    }
}

.mobile-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background-color: var(--gray-100);
    color: var(--gray-800);
}

.mobile-search-bar,
.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-100);
    margin-top: 0.75rem;
}

.mobile-search-bar.active,
.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu nav a {
    padding: 0.5rem;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.mobile-menu nav a:hover {
    background-color: var(--gray-100);
    color: var(--blog-blue);
}

/* Search Form */
.search-form {
    position: relative;
}

.search-form input[type="search"] {
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.375rem;
    width: 100%;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .search-form input[type="search"] {
        width: 250px;
    }

    .header-search {
        display: block !important;
    }
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    width: 16px;
    height: 16px;
}

/* Categories Bar - Removed from header */

/* Hero Section */
.hero-section {
    background-color: var(--blog-light-blue);
    padding: 4rem 0;
    text-align: center;
}

.hero-logo {
    height: 80px;
    width: auto;
    margin: 0 auto 1.5rem;
}

.hero-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--blog-dark-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

.hero-highlight {
    color: var(--blog-blue);
}

.hero-description {
    font-size: 1rem;
    color: var(--gray-700);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

/* Section Styles */
.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--gray-600);
    text-align: center;
    max-width: 32rem;
    margin: 0 auto 3rem;
}

/* Featured Section */
.featured-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

.carousel-slide {
    display: none;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.carousel-slide.active {
    display: block;
}

.carousel-content-wrapper {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .carousel-content-wrapper {
        flex-direction: row;
    }
}

.carousel-image-container {
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .carousel-image-container {
        width: 50%;
    }
}

.carousel-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.7s ease;
}

@media (min-width: 768px) {
    .carousel-image {
        height: 20rem;
    }
}

.carousel-image:hover {
    transform: scale(1.05);
}

.carousel-text-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

@media (min-width: 768px) {
    .carousel-text-content {
        width: 50%;
    }
}

.carousel-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--blog-light-blue);
    color: var(--blog-blue);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.carousel-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .carousel-title {
        font-size: 1.875rem;
    }
}

.carousel-title:hover {
    color: var(--blog-blue);
}

.carousel-excerpt {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-date {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.carousel-date strong {
    color: var(--blog-blue);
    font-weight: 500;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    color: var(--gray-800);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

@media (max-width: 767px) {
    .carousel-nav {
        display: none;
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--blog-blue);
    transform: scale(1.1);
}

.carousel-dot:hover {
    background-color: var(--gray-400);
}

/* Posts Grid */
.posts-section {
    padding: 4rem 0;
    background-color: var(--gray-50);
}

.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Post Card */
.post-card {
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.post-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.post-card-category {
    background-color: var(--blog-light-blue);
    color: var(--blog-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.post-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.post-card-excerpt {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--gray-400);
    flex-wrap: wrap;
}

.post-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    background: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--blog-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--blog-dark-blue);
    color: white;
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--blog-blue);
    border-color: var(--blog-blue);
}

.btn-outline:hover {
    background-color: var(--blog-blue);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background-color: white;
    color: var(--blog-blue);
}

.btn-secondary:hover {
    background-color: var(--gray-100);
    color: var(--blog-blue);
    text-decoration: none;
}

/* CTA Section */
.cta-section {
    background-color: var(--blog-blue);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Footer */
.site-footer {
    background-color: var(--blog-dark-blue);
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-description {
    color: #cbd5e0;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.footer-copyright {
    font-size: 0.75rem;
    color: #a0aec0;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Single Post Styles */
.post-header {
    background-color: var(--gray-50);
    padding: 2rem 0;
}

.post-breadcrumb {
    display: inline-flex;
    align-items: center;
    color: var(--blog-blue);
    text-decoration: none;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.post-breadcrumb:hover {
    color: var(--blog-dark-blue);
}

.post-category-link {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--blog-light-blue);
    color: var(--blog-blue);
    text-decoration: none;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.post-category-link:hover {
    background-color: var(--blog-blue);
    color: white;
}

.post-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .post-title {
        font-size: 2.25rem;
    }
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

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

/* Social Share */
.social-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-share-label {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.social-share-buttons {
    display: flex;
    gap: 0.5rem;
}

.social-share-button {
    width: 36px;
    height: 36px;
    border-radius: 0.375rem;
    border: 1px solid;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.social-share-button.facebook {
    border-color: #1877f2;
    color: #1877f2;
}

.social-share-button.facebook:hover {
    background-color: #1877f2;
    color: white;
}

.social-share-button.twitter {
    border-color: #1da1f2;
    color: #1da1f2;
}

.social-share-button.twitter:hover {
    background-color: #1da1f2;
    color: white;
}

.social-share-button.linkedin {
    border-color: #0077b5;
    color: #0077b5;
}

.social-share-button.linkedin:hover {
    background-color: #0077b5;
    color: white;
}

.social-share-button.copy {
    border-color: var(--gray-600);
    color: var(--gray-600);
}

.social-share-button.copy:hover {
    background-color: var(--gray-600);
    color: white;
}

/* Featured Image */
.post-featured-image {
    padding: 2rem 0;
}

.post-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .post-image {
        height: 24rem;
    }
}

/* Post Content */
.post-content {
    padding-bottom: 4rem;
}

.post-content-wrapper {
    max-width: 50rem;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.post-content-wrapper h2 {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--gray-900);
    margin: 2rem 0 1rem;
}

.post-content-wrapper h3 {
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--gray-900);
    margin: 1.5rem 0 0.75rem;
}

.post-content-wrapper p {
    margin-bottom: 1.5rem;
}

.post-content-wrapper ul,
.post-content-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content-wrapper li {
    margin-bottom: 0.5rem;
}

.post-content-wrapper strong {
    color: var(--gray-900);
    font-weight: 600;
}

.post-content-wrapper a {
    color: var(--blog-blue);
    text-decoration: underline;
}

.post-content-wrapper a:hover {
    color: var(--blog-dark-blue);
}

.post-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

/* Related Posts */
.related-posts {
    background-color: var(--gray-50);
    padding: 4rem 0;
}

/* Archive and Search Pages */
.archive-header,
.search-header {
    background-color: var(--gray-50);
    padding: 3rem 0;
    text-align: center;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    margin: 3rem 0 0;
    padding: 0;
}

.page-numbers {
    padding: 0.5rem 1rem;
    background-color: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.25rem;
    color: var(--gray-700);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background-color: var(--blog-blue);
    color: white;
    border-color: var(--blog-blue);
    text-decoration: none;
}

.page-numbers.dots {
    background: none;
    border: none;
    color: var(--gray-400);
}

/* Error 404 */
.error-404 {
    padding: 6rem 0;
    text-align: center;
}

/* Contact Form */
.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--blog-blue);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

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

/* About Page Specific */
.about-hero {
    background-color: var(--blog-light-blue);
    padding: 4rem 0;
    text-align: center;
}

.about-mission {
    padding: 4rem 0;
}

.mission-card {
    background: linear-gradient(to right, var(--blog-blue), var(--blog-dark-blue));
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.mission-card p {
    color: #bfdbfe;
    font-size: 1.125rem;
}

.about-features {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-600);
}

/* Contact Page Specific */
.contact-hero {
    background-color: var(--blog-light-blue);
    padding: 4rem 0;
    text-align: center;
}

.contact-reasons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .contact-reasons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-reasons {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-reason {
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
}

.contact-reason.blue { background-color: #dbeafe; }
.contact-reason.green { background-color: #dcfce7; }
.contact-reason.yellow { background-color: #fefce8; }
.contact-reason.purple { background-color: #f3e8ff; }

.contact-reason-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-reason h3 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.contact-reason p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Privacy Policy Specific */
.privacy-hero {
    background-color: var(--blog-light-blue);
    padding: 4rem 0;
}

.privacy-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    margin-bottom: 2rem;
}

.privacy-card h2 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.privacy-card p {
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.privacy-card ul {
    margin-bottom: 0.75rem;
    padding-left: 1rem;
}

.privacy-card li {
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

/* Responsive Design */
@media (max-width: 767px) {
    .container {
        padding: 0 0.75rem;
    }
    

    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.875rem;
    }
    
    .post-title {
        font-size: 1.5rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Utilities */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
