.material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }

        body {
            background-color: #faf8ff;
        }

        .topic-main-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
        }

        .topic-main-card {
            min-height: 128px;
            padding: 12px 8px 10px;
            border-radius: 8px;
            background: #fff;
            border: 1px solid #dfe3ee;
            box-shadow: 0 2px 8px rgba(25, 27, 34, 0.08);
        }

        .topic-main-logo {
            width: 68px;
            height: 68px;
            border-radius: 10px;
            background: #e7e7f0;
        }

        .topic-main-title {
            margin-top: 10px;
            color: #111827;
            font-size: 16px;
            font-weight: 800;
            line-height: 1.25;
            text-align: center;
        }

        @media (max-width: 767px) {

            html,
            body {
                width: 100%;
                max-width: 100%;
                overflow-x: hidden;
            }

            main {
                width: 100% !important;
                min-width: 0 !important;
                max-width: none !important;
                padding: 72px 12px 32px !important;
                margin: 0 !important;
                box-sizing: border-box;
            }

            main * {
                box-sizing: border-box;
                min-width: 0;
            }

            main>.grid {
                display: block !important;
                width: 100% !important;
            }

            main section,
            main aside {
                width: 100% !important;
                max-width: 100% !important;
            }

            main aside {
                margin-top: 14px;
            }

            main .topic-main-grid {
                display: grid !important;
                grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
                gap: 8px !important;
            }

            main .topic-main-card {
                min-height: 126px !important;
                padding: 10px 6px 9px !important;
                align-items: center !important;
                justify-content: center !important;
                text-align: center !important;
            }

            main .topic-main-logo {
                width: 64px !important;
                height: 64px !important;
                margin-left: auto !important;
                margin-right: auto !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
            }

            main .topic-main-grid img {
                display: block !important;
                margin-left: auto !important;
                margin-right: auto !important;
                object-position: center center !important;
            }

            main .topic-main-title {
                margin-top: 9px !important;
                font-size: 15px !important;
                line-height: 1.25 !important;
            }

            main .flex.items-end.justify-between {
                align-items: flex-start !important;
                flex-direction: column !important;
                gap: 10px !important;
                margin-bottom: 14px !important;
            }

            main h1 {
                font-size: 24px !important;
                line-height: 1.25 !important;
            }

            main aside section {
                padding: 14px !important;
                border-radius: 10px !important;
            }

            main aside .group.flex.gap-3 {
                align-items: center !important;
                min-height: 0px !important;
            }

            main aside .space-y-2>:not([hidden])~:not([hidden]),
            main aside .space-y-3>:not([hidden])~:not([hidden]) {
                margin-top: 2px !important;
            }

            main aside .space-y-2>a,
            main aside .space-y-3>a {
                font-size: 14px !important;
                line-height: 1.35 !important;
                padding-top: 0 !important;
                padding-bottom: 0 !important;
            }

            main aside img.w-20.h-14 {
                width: 70px !important;
                height: 46px !important;
                object-fit: cover !important;
            }
        }
