﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: #1e2a3a;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}


.site-header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    z-index: 100;
    border-bottom: 1px solid #eaeef2;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.site-header.scrolled {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: transparent;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: #0b2d4b;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1.05rem;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    border-bottom-color: #0266b3;
    color: #0266b3;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #1e2a3a;
    line-height: 1;
}

.breadcrumbs {
    margin: 24px 0 16px;
    font-size: 0.95rem;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 12px 20px;
    background: #f5f9ff;
    border-radius: 50px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: #5a6e82;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin: 0 12px;
    color: #9aaebb;
    font-size: 1.2rem;
    line-height: 1;
}

.breadcrumbs a {
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #0266b3;
    text-decoration: underline;
}

.section {
    padding: 40px 0;
    border-bottom: 1px solid #edf2f7;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
    color: #0a2942;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 3px solid #dce5ec;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 16px 0 32px;
    color: #0b2d4b;
    border-left: 6px solid #0266b3;
    padding-left: 20px;
}


.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02), 0 2px 5px rgba(0, 20, 30, 0.05);
    border: 1px solid #f0f4f8;
    height: fit-content;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -8px rgba(0, 35, 60, 0.15);
}

.card-img {
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.card:hover .card-img img {
    transform: scale(1.03);
}

.ratio-4x3 {
    aspect-ratio: 4 / 3;
}

.card-content {
    padding: 20px 18px 24px;
}

.card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #0266b3;
    background: #e8f0fe;
    padding: 3px 12px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.card-title a {
    text-decoration: none;
    color: #0b2a41;
    transition: color 0.1s;
}

.card-title a:hover {
    color: #0266b3;
}

.card-excerpt {
    color: #3b4b5e;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

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

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

.card-meta {
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    gap: 16px;
    border-top: 1px solid #ecf1f6;
    padding-top: 14px;
}

.card-accent {
    border-left: 4px solid #e67e22;
}

.card-minimal {
    background: #fafcfd;
}

.list-card {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2eaf2;
}

.list-card-img {
    flex: 0 0 240px;
    border-radius: 12px;
    overflow: hidden;
}

.list-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.list-card-content {
    flex: 1;
}

.list-card-title {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.category-layout {
    display: grid;
    grid-template-columns: 70% 28%;
    gap: 40px;
    margin: 40px 0;
}

.category-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-widget {
    background: #f8fbfe;
    padding: 24px;
    border-radius: 24px;
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.25rem;
    color: #0f2b40;
    border-bottom: 2px solid #dde5ef;
    padding-bottom: 10px;
}

.author-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.author-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0b2d4b;
}

.author-bio {
    color: #3f5669;
    font-size: 0.95rem;
    line-height: 1.6;
}

.related-list,
.recent-list {
    list-style: none;
}

.related-list li,
.recent-list li {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2eaf2;
}

.related-list li:last-child,
.recent-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-list a,
.recent-list a {
    text-decoration: none;
    color: #1e2a3a;
    font-weight: 500;
    display: block;
    transition: color 0.2s;
}

.related-list a:hover,
.recent-list a:hover {
    color: #0266b3;
}

.recent-list .post-date {
    display: block;
    font-size: 0.8rem;
    color: #6f7e8f;
    margin-top: 4px;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-list a {
    background: #e4ecf5;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #144a70;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.category-list a:hover {
    background: #0266b3;
    color: white;
}


.pagination {
    grid-column: span 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 40px 0 20px;
    height: fit-content;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 8px;
    border-radius: 30px;
    background: white;
    border: 1px solid #d8e2ed;
    color: #1e2a3a;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, border-color 0.2s;
}

.pagination a:hover {
    background: #edf3fa;
    border-color: #9bb7d4;
}

.pagination .active {
    background: #1e2a3a;
    color: white;
    border-color: #1e2a3a;
}

.pagination .prev,
.pagination .next {
    padding: 0 18px;
}

.article-header {
    margin-bottom: 2rem;
}

.article-header h1 {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0.5rem 0 1rem;
    color: #0b2a41;
    letter-spacing: -0.01em;
}

.article-subhead {
    font-size: 1.3rem;
    color: #3b556e;
    margin-bottom: 1.5rem;
    font-weight: 400;
    border-left: 4px solid #0266b3;
    padding-left: 1.2rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eaeef2;
    color: #4a617c;
    font-size: 0.95rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.author-mini {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.author-mini img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.author-mini span {
    font-weight: 500;
    color: #1e3a5f;
}

.views::before {
    content: "👁️";
    margin-right: 4px;
    opacity: 0.7;
}

.article-content {
    font-size: 0.985rem;
    letter-spacing: 0.2px;
    color: #171717;
    line-height: 1.75;
}

.article-content img {
    margin: 0 auto;
}

.article-content p {
    font-size: 0.985rem;
    letter-spacing: 0.2px;
    color: #171717;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.article-content h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 2.5rem 0 1rem;
    color: #0b2d4b;
}

.article-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: #f5f9ff;
    border-left: 5px solid #0266b3;
    font-style: italic;
    color: #2f4052;
    border-radius: 0 20px 20px 0;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2.5rem 0 2rem;
}

.article-tags a {
    background: #ecf3fa;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #144a70;
    text-decoration: none;
    transition: background 0.2s;
}

.article-tags a:hover {
    background: #d4e2f0;
}


.share-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem 0 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e2eaf2;
    border-bottom: 1px solid #e2eaf2;
}

.share-bar span {
    font-weight: 500;
    color: #2f455e;
    margin-right: 0.5rem;
}

.share-btn {
    background: #eef3f8;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
}

.share-btn:hover {
    background: #d4e0eb;
    transform: scale(1.05);
}


.author-bio-card {
    display: flex;
    gap: 2rem;
    background: #f8fbfe;
    padding: 2rem;
    border-radius: 28px;
    margin: 2.5rem 0 2rem;
    border: 1px solid #e6eef7;
}

.author-bio-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}

.author-bio-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #0b2d4b;
}

.author-bio-info p {
    color: #3f5669;
    line-height: 1.6;
    font-size: 0.95rem;
}

.comment-section {
    margin: 3rem 0 2rem;
}

.comment-section h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.8rem;
    border-bottom: 2px solid #dde5ef;
    padding-bottom: 0.8rem;
}

.comment-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2eaf2;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.comment-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.comment-author strong {
    font-size: 1rem;
    color: #1e2a3a;
}

.comment-date {
    margin-left: auto;
    font-size: 0.8rem;
    color: #6f7e8f;
}

.comment-content p {
    margin-left: 3.2rem;
    color: #2c4056;
    line-height: 1.6;
}

.comment-form {
    margin-top: 2.5rem;
    background: #f7fafd;
    padding: 2rem;
    border-radius: 28px;
}

.comment-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #cbd6e4;
    border-radius: 20px;
    font-family: inherit;
    resize: vertical;
    background: white;
}

.comment-form button {
    background: #1e2a3a;
    color: white;
    border: none;
    padding: 0.8rem 2.2rem;
    border-radius: 40px;
    font-weight: 600;
    margin-top: 1rem;
    cursor: not-allowed;
    opacity: 0.7;
}

.related-articles {
    margin: 3rem 0;
}

.related-articles h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.8rem;
}

.author-profile {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 24px;
}

.author-header-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02), 0 2px 8px rgba(0, 20, 30, 0.05);
    border: 1px solid #f0f4f8;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: center;
}

.author-header-avatar {
    flex: 0 0 160px;
}

.author-header-avatar img {
    width: 100%;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.author-header-info {
    flex: 1;
    min-width: 280px;
}

.author-header-info h1 {
    font-size: 2.8rem;
    font-weight: 500;
    margin: 0 0 0.5rem;
    color: #0b2a41;
    line-height: 1.2;
}

.author-header-title {
    font-size: 1.2rem;
    color: #0266b3;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.author-header-bio-short {
    font-size: 1.1rem;
    color: #2f455e;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    border-left: 4px solid #dce5ec;
    padding-left: 1.2rem;
}

.author-social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.author-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #eef3f8;
    border-radius: 50%;
    color: #1e3a5f;
    font-size: 1.4rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.1s;
}

.author-social-link:hover {
    background: #0266b3;
    color: white;
    transform: scale(1.05);
}

.author-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: #0b2d4b;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-detailed-bio {
    background: #f9fcff;
    border-radius: 32px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid #e6eef7;
}

.author-detailed-bio h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #0b2d4b;
    border-bottom: 2px solid #dde5ef;
    padding-bottom: 0.8rem;
}

.author-detailed-bio p {
    font-size: 0.985rem;
    letter-spacing: 0.2px;
    color: #171717;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.author-detailed-bio p:last-child {
    margin-bottom: 0;
}

.author-articles {
    margin: 3rem 0 2rem;
}

.author-articles h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #0b2d4b;
}


.breaking-bar {
    background-color: #f9f3e8;
    border-bottom: 1px solid #ffeacb;
    padding: 10px 0;
    font-size: 0.95rem;
}

.breaking-label {
    background-color: #c0392b;
    color: white;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    margin-right: 12px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.breaking-text a {
    color: #1e2a3a;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.trending-list {
    list-style: none;
    background: #f9fcff;
    padding: 24px;
    border-radius: 24px;
}

.trending-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #e2e8f0;
}

.trending-list li:last-child {
    border-bottom: none;
}

.trend-num {
    font-weight: 700;
    color: #9aa9b9;
    font-size: 1.2rem;
    width: 28px;
}

.trending-list a {
    text-decoration: none;
    color: #1e2a3a;
    font-weight: 500;
}

.topic-item {
    background: #f0f7ff;
    border-radius: 100px;
    padding: 12px 16px;
    text-align: center;
    font-weight: 600;
    color: #035b96;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    border: 1px solid #d9e9ff;
}

.topic-item:hover {
    background: #035b96;
    color: white;
    border-color: #035b96;
}

.newsletter-block {
    background: #f1f6fa;
    padding: 48px 0;
    margin-top: 16px;
}

.newsletter-inner {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 60px;
    font-size: 1rem;
    background: white;
}

.newsletter-form button {
    background: #1e2a3a;
    border: none;
    border-radius: 60px;
    padding: 0 32px;
    color: white;
    font-weight: 600;
    cursor: not-allowed;
    opacity: 0.7;
}

.form-note {
    font-size: 0.8rem;
    color: #7f8c9a;
    margin-top: 12px;
}

.site-footer {
    background: #0b1a2b;
    color: #ced8e3;
    padding: 48px 0 24px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 16px;
    font-weight: 500;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #b0c4de;
    text-decoration: none;
}

.footer-col a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    text-align: center;
    margin: 0;
}

.footer-bottom a {
    color: #b0c4de;
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1e2a3a;
    color: white;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 30px;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

#backToTop:hover {
    background: #005a9c;
}


@media (max-width: 1024px) {

    .grid-3,
    .grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .category-layout {
        grid-template-columns: 100%;
    }
}

@media (max-width: 768px) {
    .article-meta {
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    .grid-3,
    .grid-6 {
        grid-template-columns: 100%;
    }

    .site-header {
        position: relative;
    }

    .header-container {
        height: 54px;
    }

    .hamburger {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 54px;
        left: 0;
        width: 100%;
        background: white;
        border-bottom: 1px solid #ddd;
        padding: 20px;
        display: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .main-nav.show {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .split-layout,
    .category-layout,
    .grid-2 {
        grid-template-columns: 100%;
    }

    .category-main {
        grid-template-columns: 100%;
    }

    .pagination {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 1.4rem;
    }

    .article-subhead {
        font-size: 1.1rem;
    }

    .author-bio-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .author-bio-card img {
        width: 80px;
        height: 80px;
    }

    .share-bar {
        flex-wrap: wrap;
    }

    .comment-author {
        flex-wrap: wrap;
    }

    .comment-content p {
        margin-left: 0;
    }

    .author-header-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .author-header-avatar {
        flex: 0 0 120px;
    }

    .author-header-avatar img {
        height: 120px;
        width: 120px;
    }

    .author-header-info h1 {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }

    .author-header-bio-short {
        text-align: left;
    }

    .author-social-links {
        justify-content: center;
    }

    .author-stats {
        justify-content: center;
    }

    .author-detailed-bio {
        padding: 1.8rem;
    }
}