@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
*{
    margin: 0;
    padding: 0;
}
body{
    margin: 0;
    padding: 0;
    background-color: white;
    overflow-x: hidden;
}
.responsive{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
}
.responsive-space-between{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}
.responsive-no-wrap{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
}
.responsive-left{
    display: flex;
    justify-content: left;
    flex-direction: row;
    flex-wrap: wrap;
}
.top-header{
    width: calc(100% - 60px);
    min-height: 80px;
    background-color: #fdc500;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    padding: 0px 30px 0px 30px;
}
.top-header-title-container{
    column-gap: 17px;
    cursor: pointer;
    user-select: none;
}
.top-header-title-icon{
    width: 32px;
    height: 32px;
    margin-top: 22px;
    border: 3px solid white;
    border-radius: 50%;
    filter: drop-shadow(-2px 2px 2px rgba(0, 0, 0, 0.3));
}
.top-header-title{
    font-family: 'Lobster Two', cursive;
    font-size: 2.2em;
    color: #3a7d44;
    padding: 9px 0px 0px 0px;
    width: fit-content;
    font-weight: bold;
    text-align: left;
}
.top-header-title-span-1{
    color: #3a7d44;
    font-size: 0.9em;
    font-weight: normal;
}
.top-header-title-span-2{
    font-size: 1.2em;
    color: #00401e;
    font-weight: normal;
}
.top-header-title-span-3{
    font-size: 0.85em;
    margin-right: 5px;
}
.article-text{
    font-family: "Roboto", sans-serif;
    font-size: 1.2em;
    color: #242428;
    text-align: justify;
}
.navigator-container{
    column-gap: 30px;
    row-gap: 20px;
    margin: 20px 0px 20px 0px;
    width: fit-content;
}
.navigator-text{
    font-family: "Roboto", sans-serif;
    font-size: 1.2em;
    color: #00401e;
    cursor: pointer;
    padding: 5px 15px 5px 15px;
    border: 2px solid #1e4f2a;
    border-top-left-radius: 12px;
    border-bottom-right-radius: 12px;
    user-select: none;
    font-weight: normal;
}
.body-block{
    width: 100%;
}
.body-article{
    width: 100%;
    max-width: 860px;
    padding: 30px 30px 0px 30px;
}
.top-header-content-container{
    width: 100%;
    max-width: 860px;
    column-gap: 30px;
}
.title-h1-container{
    width: 100%;
    max-width: 860px;
    border-bottom: 2px solid #242428;
    row-gap: 10px;
    margin-bottom: 30px;
}
.title-h1{
    font-family: "Roboto", sans-serif;
    font-size: 3em;
    color: #242428;
    width: fit-content;
    cursor: default;
    text-align: left;
}
.font-italic{
    font-style: italic;
}
.font-bold{
    font-weight: bold;
}
.post-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}
.post-container {
    flex: 1 1 calc(50% - 20px);
    box-sizing: border-box;
    padding: 10px;
    background-color: #f5f3ec;
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    max-width: 420px;
}
.post-container:hover {
    transform: translateY(-5px);
}
.post-img {
    width: 100%;
    border-radius: 6px;
}
.post-title {
    font-family: "Roboto", sans-serif;
    font-size: 1.35em;
    color: #242428;
    font-weight: bold;
    margin-top: 10px;
}
.post-description {
    font-family: "Roboto", sans-serif;
    font-size: 1em;
    color: #242428;
    font-style: italic;
    margin-top: 5px;
}
.footer-block{
    width: 100%;
    min-height: 40px;
    background-color: #fdc500;
    box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.15);
    margin-top: 60px;
    column-gap: 35px;
    padding: 20px 0px 20px 0px;
    row-gap: 20px;
    align-items: center;
}
.a-link-underline{
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
.navigator-bar-container-element{
    max-width: 860px;
    width: 100%;
}
.navigator-bar-block{
    width: 100%;
    min-height: 40px;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
.navigator-bar-container{
    max-height: 40px;
    padding: 10px 16px 7px 16px;
    cursor: pointer;
    transition: 200ms;
    column-gap: 11px;
}
.navigator-bar-container:hover{
    transform: scale(1.04);
}
.navigator-bar-text{
    font-family: "Roboto", sans-serif;
    font-size: 1.15em;
    color: #242428;
    user-select: none;
}
.navigator-bar-img{
    width: 23px;
    height: 23px;
    position: relative;
    top: -1px;
    pointer-events: none;
    user-select: none;
}
.navigator-bar-selected{
    background-color: #f5f3ec;
}
.a-footer-text{
    font-family: "Roboto", sans-serif;
    font-size: 1.15em;
    color: 00401e;
    user-select: none;
    cursor: pointer;
    text-decoration: underline;
}
a{
    all: unset;
}
@media (max-width: 650px){
    .navigator-bar-block{
        min-height: 80px;
    }
    .navigator-bar-container-element{
        width: 100%;
    }
    .navigator-bar-container-a{
        width: 100%;
    }
    .navigator-bar-container{
        width: calc(100% - 32px);
    }
}
@media (min-width: 651px) and (max-width: 858px) {
    .navigator-bar-block{
        min-height: 40px;
    }
    .navigator-bar-container-element{
        width: 100%;
    }
    .navigator-bar-container-a{
        width: 50%;
    }
    .navigator-bar-container{
        width: calc(100% - 32px);
    }
}

/* Article styles */
.article-section {
    margin: 40px 0 0 0;
    width: 100%;
}

.article-h2 {
    font-family: "Roboto", sans-serif;
    font-size: 2.3em;
    color: #3a7d44;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.article-h3 {
    font-family: "Roboto", sans-serif;
    font-size: 1.5em;
    color: #1e4f2a;
    margin: 25px 0 15px 0;
}

.article-date {
    font-family: "Roboto", sans-serif;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
    width: 100%;
    height: fit-content;
}

.article-toc {
    background-color: #f5f3ec;
    padding: 20px 30px;
    border-radius: 6px;
    margin: 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: fit-content;
}

.toc-title {
    font-family: "Roboto", sans-serif;
    font-size: 1.3em;
    color: #242428;
    margin-bottom: 15px;
}

.article-toc ul {
    list-style-type: none;
    padding-left: 15px;
}

.article-toc li {
    margin-bottom: 8px;
    font-family: "Roboto", sans-serif;
    font-size: 1.1em;
}

.article-toc a {
    color: #3a7d44;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.article-toc a:hover {
    color: #00401e;
    text-decoration: underline;
}

.article-text a{
    text-decoration: underline;
    cursor: pointer;
}

.article-highlight {
    background-color: #fef2d5;
    border-left: 4px solid #fdc500;
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 0 6px 6px 0;
}

.article-highlight p {
    font-family: "Roboto", sans-serif;
    font-size: 1.1em;
    color: #242428;
    font-style: italic;
    margin: 0;
}

.article-list {
    list-style-type: square;
    padding-left: 25px;
    margin: 20px 0;
}

.article-list li {
    font-family: "Roboto", sans-serif;
    font-size: 1.2em;
    color: #242428;
    margin-bottom: 12px;
    line-height: 1.5;
}

.saving-tips {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
}

.saving-tip {
    flex: 1 1 250px;
    background-color: #f5f3ec;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.article-share,
.article-related {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    margin: 40px 0 0 0;
}

.article-share h4 {
    font-family: "Roboto", sans-serif;
    font-size: 1.2em;
    color: #242428;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-button {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 4px;
    font-family: "Roboto", sans-serif;
    font-size: 1em;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.share-button:hover {
    opacity: 0.8;
}

.twitter {
    background-color: #1DA1F2;
}

.facebook {
    background-color: #4267B2;
}

.linkedin {
    background-color: #0077B5;
}

@media (max-width: 768px) {
    .article-h2 {
        font-size: 1.8em;
    }
    
    .article-h3 {
        font-size: 1.3em;
    }
    
    .saving-tips {
        flex-direction: column;
    }
    
    .share-buttons {
        flex-direction: column;
    }

    .article-share,
    .article-related {
        flex-direction: column;
    }

    .post-container {
        flex: 1 1 100%;
    }
}

@media (max-width: 600px){
    .top-header-content-container{
        justify-content: center;
    }
}

.post-container-link {
    text-decoration: none;
    color: inherit;
    display: block;
}