@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --background-main: #fff;
    --background-secondary: #b1ddc4;
    --background-third: #006633;
    --text: #000;
    --primary: #006633;
    --secondary: #55ae3a;
    --linear-zero: #ffffff;
    --linear-first: rgba(255, 255, 255, 0.796875);
    --linear-second: rgba(255, 255, 255, 0);
    --special-light: #b5072f;
    --special-dark: #551a33;
    --background-special: #ffeef6;
    --text-primary-color: #ffffff;
}
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: var(--background-main);
    height: 100vh;
    font-family: Roboto;
}
body > .container {
    max-height: 100%;
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    background: var(--background-secondary);
}
body > .container > .header {
    padding: 12px;
    margin-bottom: 12px;
    background-color: var(--primary);
    display: block;
}
body > .container > .header img {
    height: 24px;
    margin: auto;
    display: block;
}
.body {
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0px;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) #363636;
}
.body::-webkit-scrollbar {
    width: 6px;
    background-color: #363636;
}
.body::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
}
.body .suggestion-container-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 8px;
}
.body .suggestion-container-cards .article {
    display: flex;
    gap: 8px;
    padding: 0 4px 0 0;
    background-color: var(--background-main);
    text-decoration: none;
}
.body .suggestion-container-cards .article .image-container {
    flex-basis: 50%;
    width: 50%;
}

.body .suggestion-container-cards .article .image-container img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: contain;
}
.body .suggestion-container-cards .article .title-container {
    flex-basis: 50%;
    width: 50%;
    display: flex;
    align-items: center;
}
.body .suggestion-container-cards .article .title-container p {
    margin: 4px;
    color: var(--text);
    font-weight: bold;
    font-size: 18px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.body .suggestion-container-cards .article:hover {
    background-color: var(--primary);
}
.body .suggestion-container-cards .article:hover .title-container p {
    color: var(--background-main);
}
.body .suggestion-container-text {
    margin: 16px auto;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}
.body .suggestion-container-text .more-content-button {
    border-radius: 36px;
    background-color: var(--background-third);
    color: var(--text-primary-color);
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 42px;
    font-size: 16px;
    font-weight: 500;
}
.body .suggestion-container-text .more-content-button:hover {
    background-color: var(--secondary);
}
.footer {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 8px 8px;
}
.footer a {
    padding: 8px;
    text-decoration: none;
    background-color: var(--primary);
}
.footer a:hover {
    background-color: var(--secondary);
}
.footer a.special {
    background-color: var(--special-light);
}
.footer a.special:hover {
    background-color: var(--special-dark);
}
.footer a div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.footer a div img {
    display: flex;
    width: 24px;
    height: 24px;
}
.footer a div i svg {
    fill: var(--background-main);
    width: 24px;
    height: 24px;
}
.footer a div span {
    font-size: 18px;
    font-weight: bold;
    color: var(--background-main);
}
@media screen and (min-width: 450px) {
    body .container .body .suggestion-container-cards {
        gap: 16px;
        padding: 0 8px;
    }
    body .container .body .suggestion-container-cards .article {
        gap: 12px;
        padding: 0 8px 0 0;
    }
    body
        .container
        .body
        .suggestion-container-cards
        .article
        .title-container
        p {
        margin: 8px;
        font-size: 18px;
        line-height: 24px;
        -webkit-line-clamp: 4;
    }
    body .container .body .suggestion-container-text {
        margin: 16px auto;
    }
    body .container .body .suggestion-container-text .more-content-button {
        padding: 8px 32px;
        border-radius: 42px;
        font-size: 18px;
    }
    body .container .footer {
        margin-top: 16px;
        gap: 12px;
        padding: 0 8px 8px;
    }
    body .container .footer a {
        padding: 8px;
    }
    body .container .footer a div {
        gap: 12px;
    }
    body .container .footer a div img {
        width: 28px;
        height: 28px;
    }
    body .container .footer a div span {
        font-size: 18px;
    }
}
