* {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.5;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    padding: 10px;
    max-width: 1280px;
    margin: auto;

    /*flex-wrap: wrap;*/
}

.pc-search-form {
    padding: 0 10px;
    display: flex;
    align-items: center;
    margin: 10px auto;
    height: 40px;
    position: relative;
    max-width: 1280px;
    width: 90%;
}

.pc-search-input {
    border-radius: 50px;
    background: #c8c8c8;
    width: 100%;
    padding: 0 50px 0 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: none;
    outline: none;
    height: 100%;
}

.pc-search-btn {
    position: absolute;
    z-index: 1;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: #fff;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0f2b3d, #1e4a6e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo span {
    font-size: 0.7rem;
    color: #5b6e8c;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 20px;
    max-width: 960px;
    overflow: auto;
}

.nav-links a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 1000;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #1e6f9f;
}

.carousel-section {
    margin: 15px 0;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
}

.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 2.6;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    width: 100%;
    padding: 60px 48px 40px;
    color: white;
}

.slide-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    background: rgba(30, 111, 159, 0.9);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.slide-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    max-width: 100%;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.slide-excerpt {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 70%;
    margin-bottom: 20px;
}

.slide-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    /*backdrop-filter: blur(5px);*/
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.3rem;
    color: white;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.6);
    color: #1e293b;
}

.btn-prev {
    left: 15px;
}

.btn-next {
    right: 15px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: 0.2s;
}

.dot.active {
    background: white;
    width: 28px;
    border-radius: 10px;
}

@media (max-width: 1024px) {

    .slide-title {
        font-size: 1.6rem;
    }

    .slide-excerpt {
        max-width: 85%;
    }

    .slide-content {
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 1.3rem;
    }

    .slide-excerpt {
        display: none !important;
    }

    .slide-meta {
        font-size: 0.7rem;
    }
}

.section-module {
    margin: 2rem 0;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
    margin-bottom: 28px;
}

.module-title {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.3px;
}

.module-more {
    font-size: 0.85rem;
    color: #1e6f9f;
    cursor: pointer;
    text-decoration: auto;
    font-weight: bold;
}

.module-more i {
    font-size: 0.7rem;
    margin-left: 4px;
}

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

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
}

.card-img {
    width: 100%;
    aspect-ratio: 4 / 2.25;
    /*object-fit: cover;*/
    background: #cbd5e1;
}

.card-content {
    padding: 10px 18px;
    width: 100%;
}

.card-cat {
    font-size: 0.7rem;
    font-weight: 600;
    color: #31b2ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 8px 0 10px;
    line-height: 1.4;
}

.card-excerpt {
    font-size: 0.85rem;
    color: #334155;
    margin-bottom: 12px;
}

.card-meta {
    font-size: 0.7rem;
    color: #6c7a91;
    display: flex;
    gap: 12px;
}

.feature-list-layout {
    display: flex;
    gap: 32px;
}

.feature-main {
    flex: 1.5;
}

.feature-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-feature-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
}

.side-list-item {
    display: flex;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 10px;
    border-radius: 10px;
}

.side-list-img {
    width: 150px;
    max-width: 150px;
    aspect-ratio: 4 / 2.25;
    object-fit: cover;
    border-radius: 12px;
}

.horizontal-scroll {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.horizontal-scroll .h-card {
    background: white;
    border-radius: 24px;
}

.magazine-mixed {
    display: flex;
    gap: 24px;
}

.big-article {
    flex: 1.3;
}

.line-height-1-5 {
    line-height: 1.5;
}

.small-stack {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex: 1;
}

.quote-info {
    display: flex;
    gap: 26px;
    background: #f1f5f9;
    border-radius: 32px;
    padding: 28px;
    flex-direction: column;
}

.quote-side-layout {
    display: flex;
    gap: 26px;
}

.quote-box {
    flex: 1;
    background: #0f2b3d;
    color: white;
    border-radius: 24px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.absolute-img, .absolute-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 20px;
    background: #0a0a0a1f;
}

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

.numbered-item {
    background: white;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    aspect-ratio: 4 / 2.25;
}

.number-badge {
    font-size: 2.5rem;
    font-weight: 800;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.hero-plus-mini {
    display: flex;
    gap: 28px;
}

.hero-card {
    flex: 2;
    background: white;
    border-radius: 28px;
    overflow: hidden;
}

.mini-duo {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    border-left: 3px solid #1e6f9f;
    padding: 10px 5px 10px 10px;
    align-items: center;
}

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

.gradient-card {
    background: linear-gradient(145deg, #ffffff, #fef9e6);
    border-radius: 15px;
    border: 1px solid #ffe6c7;
    position: relative;
    aspect-ratio: 4 / 2.25;
}

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

.alt-row {
    display: flex;
    gap: 28px;
    align-items: center;
    background: white;
    border-radius: 24px;
    overflow: hidden;
}

.alt-row.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 1024px) {
    .grid-3cols, .numbered-list, .gradient-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-list-layout, .quote-side-layout, .hero-plus-mini, .magazine-mixed {
        display: flex;
        flex-direction: column;
    }

    .big-article {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .grid-3cols, .numbered-list, .gradient-cards {
        grid-template-columns: 1fr;
    }

    .alt-row, .alt-row.reverse {
        flex-direction: column;
        padding: 15px 5px;
        gap: 15px;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}

.modal-container {
    background: white;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 32px;
    padding: 28px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 1.6rem;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 20px;
    color: #5b6e8c;
}

.max-line-1 {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.max-line-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.max-line-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

.logo {
    display: flex;
    gap: 5px;
    align-items: center;
}

.favicon-img {
    max-width: 50px;
}

.logo-img {
    max-width: 200px;
}

.mb-only {
    display: none;
}

.max-width-400 {
    max-width: 400px;
    border-radius: 15px;
}

.max-width-320 {
    max-width: 320px;
}

.img-left {
    max-width: 160px;
    border-radius: 10px;
}

@media screen and (max-width: 968px) {
    .pc-only {
        display: none;
    }

    .mb-only {
        display: flex !important;
    }
}

.top-1 {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.top-left {
    flex: 1.5;
}

.top-right {
    flex: 1;
}

.font-bold {
    font-weight: bold;
}

.gap-10 {
    gap: 10px;
}

.box-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 16px 0;
}

.quote-box i {
    font-size: 2rem;
    opacity: 0.5
}

.text-color-1 {
    color: #fff;
}

.text-color-2 {
    color: #e2e2e2;
}

.footer-list {
    font-weight: bold;
    margin-bottom: .5rem;
}

.footer-list a {
    color: #888;
    text-decoration: auto;
}

.back-to-top {
    z-index: 10000000;
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 40px;
    right: 40px;
    border-radius: 50px;
    background: #2c8dea;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    color: #fff;
}

button {
    border: none;
    outline: none;
    background: none;
}

a {
    text-decoration: auto;
    color: #000;
}

.mb-main {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    left: -100%;
    transition: .3s all;
    z-index: 1000000;
}

.mb-bg {
    width: 100%;
    height: 100%;
    background: rgb(147 147 147 / 45%);
}

.mb-info {
    background: #0075a2;
    padding: 2rem 1rem;
    position: absolute;
    left: 0;
    width: 80%;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000001;
}

.icon-img {
    width: 30px;
    aspect-ratio: 1;
    position: absolute;
    right: 1rem;
}

.mb-info form {
    position: relative;
    display: flex;
    width: 100%;
    height: 50px;
    align-items: center;
}

.mb-info form input {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background: #7a987f61;
    color: #aba7a7;
    font-weight: bold;
    font-size: large;
    border: none;
    outline: none;
    padding: 10px 50px 10px 20px;
}

.mb-info form button {
    position: absolute;
    right: 1.5rem;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.menu-item {
    padding: 5px 20px;
}

.menu-item.active {
    border-radius: 50px;
    background: #11d6cb;
}

ul, li {
    list-style: none;
}

.menu-item a {
    color: #fff;
    font-weight: 1000;
    font-size: 24px;
}

.page-size {
    display: flex;
    font-weight: bold;
    gap: 1.5rem;
    margin: 2rem auto 1rem;
    justify-content: center;
    font-size: 20px;
}

.page-size ul {
    display: flex;
    font-weight: bold;
    gap: 1.5rem;
    justify-content: center;
    font-size: 20px;
}

.page-size li {
    list-style: none;
}

.page-size li a, .page-size span, .page-size a {
    background: #cccccc;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    text-decoration: auto;
    padding: 5px 10px;
    border: 1px solid #0e8aa8;
    color: #fff;
}

.page-size li a:hover, .page-size a:hover {
    background: #0e8aa8;
}

.page-size a {
    background: #0e8aa8;
}

.article-info p, .article-info li {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-info ul, .article-info li {
    list-style: disc;
}

.article-info ul {
    padding-left: 2rem;
}

.article-info table {
    width: 100%;
    font-size: 10px;
}

.article-info h1, .article-info h2, .article-info h3, .article-info h4, .article-info h5, .article-info h6 {
    font-weight: 1000;
    margin: 15px 0;
    color: #fff;
}

.article-info h1 {
    font-size: 30px;
}

.article-info h2 {
    font-size: 28px;
}

.article-info h3 {
    font-size: 25px;
}

.article-info h4 {
    font-size: 22px;
}

.article-info h5, .article-info h6 {
    font-size: 19px;
}

.article-info a {
    color: red;
}

.background-1 {
    background: transparent;
    box-shadow: none;
}

.font-size-1 {
    font-size: 1rem;
}

.margin-b-6 {
    margin: 0 0 6px;
}

.box-shadow-1 {
    box-shadow: none;
    border: 1px solid #eef2ff;
}

@media screen and (max-width: 768px) {
    .top-1 {
        display: grid;
    }

    .quote-info {
        padding: 25px 10px;
    }

    .card-content {
        padding: 5px 10px;
    }

    .card-title {
        font-size: 1rem;
        line-height: 1.5;
    }

    .carousel-container {
        aspect-ratio: 4 / 2.25;
    }

    .max-width-320 {
        max-width: 360px;
        border-radius: 12px;
    }
}

@media screen and (max-width: 500px) {
    .horizontal-scroll {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media screen and (min-width: 500px) and (max-width: 768px) {
    .horizontal-scroll {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.mb-btn {
    border: none;
    background: none;
    color: #919191;
}

.top-article-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.top-article-desc {
    font-size: 0.75rem;
    color: #6c7a91;
}

.article-detail {
    padding: 30px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    position: relative;
}

@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.article-header {
    margin-bottom: 20px;
}

.article-category {
    display: inline-block;
    background: #1f5f8e20;
    color: #1f5f8e;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #0a1927;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: #5b6e8c;
    font-size: 0.85rem;
    border-bottom: 1px solid #eef2f6;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.article-meta span i {
    margin-right: 6px;
}

.article-content {
    font-size: 1.08rem;
    color: #2d3e50;
}

.article-content p {
    margin-bottom: .8rem;
    line-height: 1.5;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.article-content blockquote {
    border-left: 4px solid #1f5f8e;
    background: #f1f5f9;
    padding: 1.2rem 2rem;
    margin: 1.8rem 0;
    font-style: italic;
    border-radius: 12px;
    color: #2c3e4e;
}

.article-content ul, .article-content ol {
    margin: 1rem 0 1.5rem 1.8rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    list-style: disc;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.comment-form textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 16px;
    font-family: inherit;
    margin: 16px 0;
    resize: vertical;
}

.sidebar {
    position: sticky;
    top: 160px;
    max-height: 700px;
}

.sidebar-widget {
    background: white;
    border-radius: 24px;
    padding: 20px 10px;
    margin-bottom: 32px;
    border: 1px solid #eef2f6;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    border-left: 4px solid #1f5f8e;
    padding-left: 12px;
}

.related-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: 0.2s;
    align-items: center;
}

.related-item:hover {
    opacity: 0.7;
}

.related-img {
    width: 140px;
    aspect-ratio: 4 / 2.25;
    object-fit: cover;
    border-radius: 12px;
}

.article-content a {
    color: #2c8dea;
}

.article-content table {
    font-size: 10px;
}


.fa, .fa-brands, .fa-classic, .fa-regular, .fa-sharp, .fa-solid, .fab, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto
}

.fa-classic, .fa-regular, .fa-solid, .far, .fas {
    font-family: "Font Awesome 6 Free"
}

.fa-2x {
    font-size: 2em
}

.fa-calendar-alt:before, .fa-calendar-days:before {
    content: "\f073"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-image:before {
    content: "\f03e"
}

.fa-palette:before {
    content: "\f53f"
}

.fa-arrows-alt-h:before, .fa-left-right:before {
    content: "\f337"
}

.fa-layer-group:before {
    content: "\f5fd"
}

.fa-newspaper:before {
    content: "\f1ea"
}

.fa-chart-line:before, .fa-line-chart:before {
    content: "\f201"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-code-branch:before {
    content: "\f126"
}

.fa-angle-double-up:before, .fa-angles-up:before {
    content: "\f102"
}

.fa-bars:before, .fa-navicon:before {
    content: "\f0c9"
}

.fa-timeline:before {
    content: "\e29c"
}

.fa-magnifying-glass:before, .fa-search:before {
    content: "\f002"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-fire:before {
    content: "\f06d"
}

:host, :root {
    --fa-style-family-brands: "Font Awesome 6 Brands";
    --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(/css/blog_40/fonts/fa-brands-400.woff2) format("woff2"), url(/css/blog_40/fonts/fa-brands-400.ttf) format("truetype")
}

:host, :root {
    --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(/css/blog_40/fonts/fa-regular-400.woff2) format("woff2"), url(/css/blog_40/fonts/fa-regular-400.ttf) format("truetype")
}

.fa-regular, .far {
    font-weight: 400
}

:host, :root {
    --fa-style-family-classic: "Font Awesome 6 Free";
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(/css/blog_40/fonts/fa-solid-900.woff2) format("woff2"), url(/css/blog_40/fonts/fa-solid-900.ttf) format("truetype")
}

.fa-solid, .fas {
    font-weight: 900
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-display: block;
    font-weight: 400;
    src: url(/css/blog_40/fonts/fa-brands-400.woff2) format("woff2"), url(/css/blog_40/fonts/fa-brands-400.ttf) format("truetype")
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-display: block;
    font-weight: 900;
    src: url(/css/blog_40/fonts/fa-solid-900.woff2) format("woff2"), url(/css/blog_40/fonts/fa-solid-900.ttf) format("truetype")
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-display: block;
    font-weight: 400;
    src: url(/css/blog_40/fonts/fa-regular-400.woff2) format("woff2"), url(/css/blog_40/fonts/fa-regular-400.ttf) format("truetype")
}

@font-face {
    font-family: "FontAwesome";
    font-display: block;
    src: url(/css/blog_40/fonts/fa-solid-900.woff2) format("woff2"), url(/css/blog_40/fonts/fa-solid-900.ttf) format("truetype")
}

@font-face {
    font-family: "FontAwesome";
    font-display: block;
    src: url(/css/blog_40/fonts/fa-brands-400.woff2) format("woff2"), url(/css/blog_40/fonts/fa-brands-400.ttf) format("truetype")
}

@font-face {
    font-family: "FontAwesome";
    font-display: block;
    src: url(/css/blog_40/fonts/fa-regular-400.woff2) format("woff2"), url(/css/blog_40/fonts/fa-regular-400.ttf) format("truetype");
    unicode-range: u+f003, u+f006, u+f014, u+f016-f017, u+f01a-f01b, u+f01d, u+f022, u+f03e, u+f044, u+f046, u+f05c-f05d, u+f06e, u+f070, u+f087-f088, u+f08a, u+f094, u+f096-f097, u+f09d, u+f0a0, u+f0a2, u+f0a4-f0a7, u+f0c5, u+f0c7, u+f0e5-f0e6, u+f0eb, u+f0f6-f0f8, u+f10c, u+f114-f115, u+f118-f11a, u+f11c-f11d, u+f133, u+f147, u+f14e, u+f150-f152, u+f185-f186, u+f18e, u+f190-f192, u+f196, u+f1c1-f1c9, u+f1d9, u+f1db, u+f1e3, u+f1ea, u+f1f7, u+f1f9, u+f20a, u+f247-f248, u+f24a, u+f24d, u+f255-f25b, u+f25d, u+f271-f274, u+f278, u+f27b, u+f28c, u+f28e, u+f29c, u+f2b5, u+f2b7, u+f2ba, u+f2bc, u+f2be, u+f2c0-f2c1, u+f2c3, u+f2d0, u+f2d2, u+f2d4, u+f2dc
}

@font-face {
    font-family: "FontAwesome";
    font-display: block;
    src: url(/css/blog_40/fonts/fa-v4compatibility.woff2) format("woff2"), url(/css/blog_40/fonts/fa-v4compatibility.ttf) format("truetype");
    unicode-range: u+f041, u+f047, u+f065-f066, u+f07d-f07e, u+f080, u+f08b, u+f08e, u+f090, u+f09a, u+f0ac, u+f0ae, u+f0b2, u+f0d0, u+f0d6, u+f0e4, u+f0ec, u+f10a-f10b, u+f123, u+f13e, u+f148-f149, u+f14c, u+f156, u+f15e, u+f160-f161, u+f163, u+f175-f178, u+f195, u+f1f8, u+f219, u+f27a
}

.flex-column {
    flex-direction: column;
}

.w-full {
    width: 100%;
}

.top-2 {
    flex: 2;
}

.margin-top-1 {
    margin-top: 1rem;
}