/* ---------------------------------------------------- */
/* 1. CSS Reset and Variables (Light Mode) */
/* ---------------------------------------------------- */

:root {
    /* Colors for Light Mode */
    --black: #090e11;        /* Primary Dark Text/Footer Background */
    --white: #ffffff;        /* Primary Background */
    --light-bg-card: #f8f8f8; /* Card Background */
    --gray-text: #4b5563;    /* Secondary Text (gray-600) */
    --border-color: #e5e7eb; /* Subtle Border (gray-200) */
    
    /* Accent Colors */
    --highlight: #ff6767;    /* Primary Accent (Red) */
    --green-accent: #074a4d; /* Secondary Accent (Dark Teal) - used for timeline */

    /* Fonts */
    --font-primary: 'Inter', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white); /* Light Background */
    color: var(--black); /* Dark Text */
    font-family: var(--font-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

/* ---------------------------------------------------- */
/* 2. Utility and Structural Classes */
/* ---------------------------------------------------- */

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.main-content {
    padding-top: 1rem;
    padding-bottom: 4rem;
}

.section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    display: inline-block;
    border-bottom: 3px solid var(--highlight);
    padding-bottom: 0.5rem;
    display: block;
    color: var(--black); /* Dark title */
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background-color: var(--highlight);
    color: var(--white); /* White text on accent background */
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: #ff8888;
    box-shadow: 0 6px 15px rgba(255, 103, 103, 0.4);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    color: var(--black); /* Dark text on light background */
    border: 1px solid var(--gray-text);
}

.btn-secondary:hover {
    border-color: var(--highlight);
    color: var(--highlight);
    transform: scale(1.05);
}

.btn-nav {
    border: 1px solid var(--highlight);
    color: var(--highlight);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    background-color: var(--white);
}

.btn-nav:hover {
    background-color: var(--highlight);
    color: var(--white);
    transform: none;
}
/* ---------------------------------------------------- */
/* 3. Header and Navigation */
/* ---------------------------------------------------- */

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95); /* Light background with blur */
    backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.brand {
    font-size: 1.875rem;
    font-weight: 800;
    /* letter-spacing: 0.1em; */
    color: var(--black);
}

.brand:hover {
    color: var(--highlight);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-text); /* Subtle link color */
}

.nav-links a:hover {
    color: var(--highlight);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--black);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ---------------------------------------------------- */
/* 4. Hero Section */
/* ---------------------------------------------------- */

.hero-section {
    min-height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pre-title {
    font-size: 1.5rem;
    color: var(--highlight);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.main-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.25rem;
    color: var(--gray-text);
    max-width: 800px;
    margin: 0 auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 1.5rem;
}

/* ---------------------------------------------------- */
/* 5. About Section */
/* ---------------------------------------------------- */

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-grid .text-content p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--gray-text);
}

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

.visual-placeholder i {
    width: 10rem;
    height: 10rem;
    background-color: var(--highlight);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: var(--white); /* White icon on accent color */
    box-shadow: 0 0 50px rgba(255, 103, 103, 0.4);
}
/* ---------------------------------------------------- */
/* 6. Skills & Experience Section */
/* ---------------------------------------------------- */

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.skill-card {
    background-color: var(--light-bg-card); /* Light Card Background */
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skill-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--highlight);
    transform: translateY(-3px);
}

.icon-highlight {
    color: var(--highlight);
    font-size: 2rem;
}

.skill-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
}

.skill-card p {
    color: var(--gray-text);
    font-size: 0.875rem;
}

.timeline-heading {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--highlight);
    margin-bottom: 2rem;
}

/* Timeline specific styles */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--border-color); /* Light timeline line */
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    display: none;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    margin: 1.5rem 0;
}

.timeline-content {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    right: -5px;
    background-color: var(--highlight);
    border: 3px solid var(--white); /* White border around dot */
    top: 20px;
    border-radius: 50%;
    z-index: 1;
    display: none;
}

/* Positions for desktop view */
.timeline-right {
    left: 50%;
    padding-left: 50px;
}

.timeline-right::after {
    left: -5px;
}

.timeline-left {
    left: 0;
    padding-right: 50px;
    text-align: right;
}

.timeline-left::after {
    right: -5px;
}

.timeline-date {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--highlight);
    display: block;
    margin-bottom: 0.25rem;
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.timeline-content .company {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
}

.timeline-content ul {
    list-style: disc;
    padding-left: 20px;
    color: #6b7280;
    font-size: 0.875rem;
}
/* ---------------------------------------------------- */
/* 7. Projects Section */
/* ---------------------------------------------------- */

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.project-card {
    background-color: var(--light-bg-card);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: border-color 0.3s;
}

.project-card:hover {
    border-color: var(--highlight);
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--highlight);
    margin-bottom: 0.5rem;
}

.project-stack {
    color: var(--gray-text);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.project-description {
    color: var(--black);
    margin-bottom: 1.5rem;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--black);
}

.project-link:hover {
    color: var(--highlight);
}

.project-link i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* ---------------------------------------------------- */
/* 8. Contact Section */
/* ---------------------------------------------------- */

.contact-grid {
    background-color: var(--light-bg-card);
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
}

.contact-description {
    color: var(--gray-text);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-label {
    font-size: 0.875rem;
    color: var(--highlight);
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
}

.social-links {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
}

.social-links a {
    color: var(--black);
    font-size: 1.5rem;
}

.social-links a:hover {
    color: var(--highlight);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--black);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-text);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--highlight);
    box-shadow: 0 0 0 3px rgba(255, 103, 103, 0.2);
}

.contact-form textarea {
    resize: vertical;
}
/* ---------------------------------------------------- */
/* 9. Footer (High Contrast Dark Mode within Light Mode) */
/* ---------------------------------------------------- */

.footer {
    text-align: center;
    padding: 2.5rem 0; /* Increased padding */
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--black); /* Dark background */
    color: var(--white); /* White text */
}

.copyright {
    font-size: 0.875rem;
    color: #e5e7eb; /* Light gray text for contrast */
}

.footer-icon {
    color: var(--highlight);
    font-size: 1rem;
    margin: 0 0.25rem;
}

/* ---------------------------------------------------- */
/* 9.5. Notes Section Styles */
/* ---------------------------------------------------- */

.notes-header {
    text-align: center;
    margin-bottom: 3rem;
}

.notes-subtitle {
    font-size: 1.125rem;
    color: var(--gray-text);
    margin-top: 0.5rem;
    font-weight: 400;
}

.notes-stream {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.note-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.note-item:hover {
    border-color: var(--highlight);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.note-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.note-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    line-height: 1.3;
}

.note-date {
    font-size: 0.875rem;
    color: var(--gray-text);
    font-weight: 500;
    white-space: nowrap;
    opacity: 0.8;
}

.note-content {
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.note-content h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--highlight);
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid var(--highlight);
    padding-bottom: 0.5rem;
}

.note-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 1.5rem 0 0.75rem 0;
    border-left: 4px solid var(--highlight);
    padding-left: 1rem;
}

.note-content p {
    margin-bottom: 1rem;
    color: var(--gray-text);
}

.note-content ul, .note-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: var(--gray-text);
}

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

.note-content code {
    background-color: var(--light-bg-card);
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    color: var(--highlight);
    font-family: 'Monaco', 'Menlo', monospace;
}

.note-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.note-tag {
    background-color: var(--light-bg-card);
    color: var(--gray-text);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s;
}

.note-tag:hover {
    background-color: var(--highlight);
    color: var(--white);
}

.post-tag {
    background-color: transparent;
    color: var(--gray-text);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid var(--border-color);
}

.post-tag:hover {
    background-color: var(--highlight);
    color: var(--white);
    border-color: var(--highlight);
}

/* ---------------------------------------------------- */
/* Blog Card Styles */
/* ---------------------------------------------------- */

.blog-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--highlight);
}

.blog-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--light-bg-card);
}

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

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

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

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-date {
    color: var(--highlight);
    font-weight: 600;
}

.blog-card-reading-time {
    color: var(--gray-text);
    font-weight: 500;
}

.blog-card-reading-time::before {
    content: '•';
    margin-right: 0.5rem;
    color: var(--border-color);
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--highlight);
}

.blog-card-excerpt {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.blog-card-tag {
    background-color: var(--light-bg-card);
    color: var(--gray-text);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    pointer-events: none;
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--highlight), #ff8888);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.blog-card-placeholder-text {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ---------------------------------------------------- */
/* Notes Month Grouping */
/* ---------------------------------------------------- */

.notes-month-header {
    margin: 3rem 0 2rem 0;
    text-align: center;
    position: relative;
}

.notes-month-header:first-child {
    margin-top: 0;
}

.notes-month-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--highlight);
    background-color: var(--white);
    padding: 0 2rem;
    position: relative;
    display: inline-block;
}

.notes-month-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border-color);
    z-index: -1;
}

/* ---------------------------------------------------- */
/* 9.7. Pagination Styles */
/* ---------------------------------------------------- */

.pagination-nav {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pagination-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--black);
    font-weight: 500;
    transition: all 0.2s;
}

.pagination-btn:hover {
    border-color: var(--highlight);
    color: var(--highlight);
    transform: translateY(-1px);
}

.pagination-pages {
    display: flex;
    gap: 0.25rem;
    margin: 0 1rem;
}

.pagination-page, .pagination-current {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s;
}

.pagination-page {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    color: var(--black);
}

.pagination-page:hover {
    border-color: var(--highlight);
    color: var(--highlight);
}

.pagination-current {
    background-color: var(--highlight);
    color: var(--white);
    border: 1px solid var(--highlight);
}

.pagination-info {
    font-size: 0.875rem;
    color: var(--gray-text);
    text-align: center;
}

/* ---------------------------------------------------- */
/* 10. Responsiveness (Mobile First) */
/* ---------------------------------------------------- */

/* Tablet and larger screens */
@media (min-width: 768px) {
    .main-title {
        font-size: 5rem;
    }
    .about-grid {
        grid-template-columns: 2fr 1fr;
    }
    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Timeline adjustments for desktop */
    .timeline::after {
        display: block;
    }
    .timeline-item::after {
        display: block;
    }
}

/* Desktop screens */
@media (min-width: 1024px) {
    .main-title {
        font-size: 6rem;
    }
}

/* Mobile Nav adjustments */
@media (max-width: 767px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--white);
        border-top: 1px solid var(--border-color);
        padding: 0.5rem 0;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        z-index: 50;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        transition: background-color 0.15s;
    }

    .nav-links a:hover {
        background-color: var(--light-bg-card);
    }

    .nav-links .btn-nav {
        margin: 0.5rem 1.5rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 0.375rem;
        transition: background-color 0.15s;
        font-size: 1.1rem;
        color: var(--gray-text);
    }

    .menu-toggle:hover {
        background-color: var(--light-bg-card);
        color: var(--black);
    }

    .menu-toggle:focus {
        outline: 2px solid var(--highlight);
        outline-offset: 2px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-actions a {
        width: 100%;
    }

    /* Timeline on mobile: stack content, remove line, center text */
    .timeline::after {
        display: none;
    }
    .timeline-item {
        width: 100%;
        padding: 0;
        margin: 1.5rem 0;
        text-align: left;
    }
    .timeline-right {
        left: 0;
        padding-left: 0;
    }
    .timeline-left {
        padding-right: 0;
    }
    .timeline-item::after {
        display: none;
    }
    .timeline-content {
        border-left: 3px solid var(--green-accent);
        padding-left: 1rem;
    }
    
    /* Notes mobile adjustments */
    .note-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .note-item {
        padding: 1.5rem;
    }
    
    .notes-stream {
        gap: 2rem;
    }
    
    /* Pagination mobile adjustments */
    .pagination-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-pages {
        margin: 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}