/* CSS Reset */

:root {
    --color-main: #00858d;
    --color-teal-600: #00858d;
    --color-teal-500: #0a9aa3;
    --color-teal-100: #e1f8fa;
    --color-gray-900: #191919;
    --color-gray-800: #252525;
    --color-gray-700: #333333;
    --color-gray-600: #4b5563;
    --color-gray-500: #6b7280;
    --color-gray-400: #9ca3af;
    --color-gray-300: #d1d5db;
    --color-gray-200: #e5e7eb;
    --color-gray-100: #f3f4f6;
    --color-white: #ffffff;
    --color-hero-a: #e8f5f4;
    --color-hero-b: #b8e6e1;
    --radius-sm: 6px;
    --radius-md: 8px;
    --shadow-sm: 0 0 7.6px rgba(128, 141, 139, 0.21);
    --shadow-md: 0 0 18px rgba(112, 135, 132, 0.27);
    --shadow-lg: 3px 0 32px rgba(226, 226, 226, 0.33);
    --container-max: 1300px;
}
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 30px auto;
    padding: 0 0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: break-all;
    word-break: break-word;
    white-space: normal;
    word-wrap: break-word ;
}

html {
    font-size: 16px;
    line-height: 1.6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    background-color: #e8f5f4;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

.text-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

.text-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}
.text-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
        word-break: break-word !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}
.empty-title {
    font-family: 'HarmonyOS Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #B1B1B1;
}

.title {
    /* Categories */

    font-family: "HarmonyOS Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 46px;
    line-height: 22px;
    /* or 48% */
    color: #252525;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

.title_line {
    /* Recommended Reading */
    font-family: "HarmonyOS Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 32px;
    color: #191919;
    border-left: 6px solid var(--color-main);
    padding-left: 10px;
    margin-top: 50px;
    margin-bottom: 35px;
    width: 100%;
}

.title_hash {
    /* Search here */

    font-family: 'HarmonyOS Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #191919;
}

.search-title {
    /* Results for: Produce */
    font-family: 'HarmonyOS Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 33px;
    color: #00858D;
}

.footer {
    background-color: #101c2c;
    color: #ccc;
    font-size: 14px;
}

.footer__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__logo {
    height: 40px;
    margin-bottom: 18px;
}

.footer__social-title {
    color: #ffffff;
    font-family: "HarmonyOS Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 18px;
}

.footer__social-list {
    display: flex;
    gap: 8px;
}

.footer__social-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #374151;
    border-radius: 4px;
    transition: background 0.2s;
    color: #fff;
}

    .footer__social-item:hover {
        background: #4b5563;
    }

.footer__column {
}

.footer__title {
    margin-bottom: 32px;
    font-family: "HarmonyOS Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #ffffff;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__link {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

    .footer__link:hover {
        color: var(--color-main);
        text-decoration: underline;
    }

.footer__bottom {
    border-top: 1px solid #1f2937;
    text-align: center;
    padding: 16px 24px;
    margin-top: 24px;
}

.footer__copyright {
    color: #888;
    font-size: 13px;
}
/* taag */

.topic-pills {
    padding: 8px 0;
}

.topic-pills__list {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.topic-pills__item {
    flex: 0 0 auto;
}

.topic-pills__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 22px;
    border-radius: 9999px;
    border: 2px solid #0e9898;
    background: #fff;
    color: #0e9898;
    text-decoration: none;
    font: 500 14px/38px ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, PingFang SC, Microsoft YaHei;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

    .topic-pills__pill:hover {
        border-color: var(--color-main);
        background: var(--color-main);
        color: #fff;
    }

.topic-pills__pill--active {
    background: #0e9898;
    color: #fff;
    border-color: #0e9898;
}

    .topic-pills__pill--active:hover {
        background: var(--color-main);
        border-color: var(--color-main);
    }

.topic-pills__label {
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
