html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: #f5f7fb;
    color: #243145;
    font: 14px/1.75 "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

a {
    color: #2f63b8;
    text-decoration: none;
}

a:hover {
    color: #204a8d;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
}

ul,
ol,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

input,
button,
textarea,
select {
    font: inherit;
}

.site-shell {
    width: 1200px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 閸忋劌鐪?Header 閺嶅嘲绱?*/
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-header-inner {
    background: #fff;
    border-bottom: 1px solid #f0f3f8;
}

.site-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 20px 0;
}

.site-brand {
    flex: 0 0 auto;
}

.site-brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a2b47;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background: #2f63b8;
    border-radius: 50%;
    display: inline-block;
}

.site-brand-desc {
    margin-top: 8px;
    color: #8c98ae;
    font-size: 13px;
    font-weight: 500;
}

.site-search-wrap {
    flex: 1 1 auto;
    max-width: 580px;
}

.site-search-box {
    display: flex;
    align-items: center;
    background: #f4f7fa;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-search-box:focus-within {
    background: #fff;
    border-color: #2f63b8;
    box-shadow: 0 10px 25px rgba(47, 99, 184, 0.12);
}

.site-search-input {
    flex: 1;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0 18px;
    font-size: 15px;
    color: #1a2b47;
    outline: none;
}

.site-search-btn {
    height: 40px;
    padding: 0 22px;
    border: 0;
    border-radius: 9px;
    background: #2f63b8;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    margin: 2px;
    transition: all 0.2s;
}

.site-search-btn:hover {
    background: #1e4a91;
    transform: scale(1.02);
}

.site-search-hot {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding: 0 4px;
    overflow: hidden;
}

.hot-label {
    color: #abb6c8;
    font-size: 12px;
    white-space: nowrap;
}

.site-search-hot a {
    color: #7c8ba1;
    font-size: 13px;
    white-space: nowrap;
    transition: color 0.2s;
}

.site-search-hot a:hover {
    color: #2f63b8;
}

.site-header-tools {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.tool-link {
    color: #8c98ae;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.tool-link:hover {
    color: #2f63b8;
}

/* 鐎佃壈鍩呴弽蹇旂壉瀵?*/
.site-nav {
    background: #fff;
    position: relative;
    z-index: 90;
    border-bottom: 1px solid #edf1f5;
}

.site-nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px;
    overflow: visible;
    position: relative;
}

.site-nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
    overflow: visible;
}

.site-nav-list li {
    height: 100%;
    display: flex;
    align-items: center;
    position: static;
}

.site-nav-list li a {
    display: block;
    padding: 0 18px;
    height: 36px;
    line-height: 36px;
    border-radius: 8px;
    background: transparent;
    color: #4a5a84;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.site-nav-list li a:hover,
.site-nav-list li a:active {
    color: #22324b;
    background: #f3f6fa;
}

.site-nav-list li.is-active a {
    background: #eef2f6;
    color: #22324b;
}

.site-nav-list li.is-active a:hover,
.site-nav-list li.is-active a:active {
    background: #e8edf3;
    color: #22324b;
}

.site-nav-item {
    overflow: visible;
}

.site-nav-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scaleY(0.92);
    transform-origin: top;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
    z-index: 20;
}

.site-nav-item:hover .site-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scaleY(1);
    pointer-events: auto;
}

.site-nav-dropdown-inner {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    min-height: 20px;
    padding: 6px 0;
    background: #f3f5f7;
    border-top: 1px solid #e7ebf0;
    /* border-bottom: 1px solid #e7ebf0; */
    border-radius: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    overflow-x: hidden;
    scrollbar-width: none;
}

.site-nav-dropdown-inner::-webkit-scrollbar {
    display: none;
}

.site-nav-dropdown-inner a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: transparent;
    color: #5f6d83;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    flex: 0 0 auto;
    -webkit-tap-highlight-color: transparent;
}

.site-nav-dropdown-inner a:hover,
.site-nav-dropdown-inner a:active,
.site-nav-dropdown-inner a.is-current {
    background: #eef2f6;
    color: #22324b;
}

.site-nav-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #f8fafc;
    border-radius: 999px;
    font-size: 13px;
    color: #64748b;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.site-subnav {
    background: #fbfcff;
    border-bottom: 1px solid #edf1f7;
}

.site-subnav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 12px 0;
}

.site-subnav-list a {
    position: relative;
    color: #5e6e86;
}

.site-subnav-list a:hover {
    color: #2f63b8;
}

.site-footer {
    margin-top: 40px;
    padding: 40px 0 28px;
    background: #152338;
    color: #c9d4e6;
}

.site-footer a {
    color: #dce6f5;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
    gap: 28px;
}

.site-footer-brand h3,
.site-footer h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 14px;
}

.site-footer-brand p {
    color: #aebcd2;
}

.site-footer-meta {
    display: flex;
    gap: 14px;
    margin-top: 14px;
}

.site-footer-links li + li {
    margin-top: 10px;
}

.site-footer-alpha {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px 8px;
}

.site-footer-alpha li {
    margin: 0;
}

.site-footer-alpha a {
    display: block;
    padding: 6px 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
}

.site-footer-friends,
.site-footer-bottom {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer-friends {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.site-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    color: #9eb0ca;
    font-size: 13px;
}

#gotop {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(47, 99, 184, 0.9);
    box-shadow: 0 8px 20px rgba(47, 99, 184, 0.28);
}

#gotop::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    margin-left: -6px;
    margin-top: -2px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(45deg);
}

/* 妫ｆ牠銆夐弨鍦娑撴挸鐫橀弽宄扮础 */
.home-redesign-v5 {
    padding: 28px 0 56px;
    color: #243145;
}
.home-redesign-v5 .home-section {
    margin-top: 26px;
}
.home-redesign-v5 .home-section:not(.home-hero) {
    padding: 28px 30px 30px;
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 0;
    box-shadow: 0 10px 28px rgba(32, 59, 98, 0.06);
}
.home-redesign-v5 .home-panel,
.home-redesign-v5 .home-task,
.home-redesign-v5 .home-topic,
.home-redesign-v5 .home-faq-item,
.home-redesign-v5 .home-guideline {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(32, 59, 98, 0.06);
}
.home-redesign-v5 .home-hero {
    display: block;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f7fbff 0%, #ffffff 40%, #f9f7ff 100%);
    border: 1px solid #e8edf5;
    border-radius: 0;
    box-shadow: 0 10px 28px rgba(32, 59, 98, 0.06);
}
.home-redesign-v5 .home-hero-main {
    position: relative;
    padding: 42px 44px;
}
.home-redesign-v5 .home-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
    gap: 20px;
    align-items: stretch;
}
.home-redesign-v5 .home-hero::before {
    content: "";
    position: absolute;
    right: -80px;
    top: 50%;
    width: 220px;
    height: 220px;
    border: 1px dashed rgba(47, 99, 184, 0.14);
    border-radius: 50%;
    transform: translateY(-50%);
}
.home-redesign-v5 .home-hero::after {
    content: "閺?;
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 128px;
    line-height: 1;
    font-weight: 900;
    color: rgba(47, 99, 184, 0.05);
    font-family: "Source Han Serif SC", "Noto Serif SC", serif;
    pointer-events: none;
}
.home-redesign-v5 .home-hero-content {
    position: relative;
    max-width: 680px;
}
.home-redesign-v5 .home-hero-daily {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0 10px 24px;
    background: transparent;
    border-left: 1px solid rgba(47, 99, 184, 0.12);
}
.home-redesign-v5 .home-hero-kicker {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #eef5ff;
    color: #2f63b8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}
.home-redesign-v5 .home-hero-content h1 {
    margin: 0;
    font-size: 26px;
    line-height: 1.3;
    color: #14243d;
    font-weight: 800;
}
.home-redesign-v5 .home-hero-lead {
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 1.8;
    color: #55657f;
}
.home-redesign-v5 .home-hero-quote {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(47, 99, 184, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}
.home-redesign-v5 .quote-icon {
    flex: 0 0 auto;
    color: #2f63b8;
    opacity: 0.2;
}
.home-redesign-v5 .quote-text p {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: #1e3a63;
    font-family: "Noto Serif SC", "Source Han Serif SC", "PT Serif", serif;
}
.home-redesign-v5 .quote-link {
    display: block;
    color: inherit;
}
.home-redesign-v5 .quote-link:hover {
    color: inherit;
}
.home-redesign-v5 .quote-link:hover p {
    color: #2f63b8;
}
.home-redesign-v5 .quote-author {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #8c98ae;
}
.home-redesign-v5 .home-side-block {
    flex: 1;
    padding: 28px;
    display: flex;
    flex-direction: column;
}
.home-redesign-v5 .home-side-head,
.home-redesign-v5 .home-section-head,
.home-redesign-v5 .home-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.home-redesign-v5 .home-side-head h2,
.home-redesign-v5 .home-panel-head h3,
.home-redesign-v5 .home-section-head h2 {
    margin: 0;
    color: #1b2941;
}
.home-redesign-v5 .home-side-head h2 {
    font-size: 18px;
}
.home-redesign-v5 .home-panel-head h3 {
    font-size: 20px;
}
.home-redesign-v5 .home-section-head h2 {
    font-size: 28px;
}
.home-redesign-v5 .home-section-head p {
    margin: 8px 0 0;
    color: #66768d;
    line-height: 1.8;
}
.home-redesign-v5 .daily-idiom-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 14px 0 12px;
}
.home-redesign-v5 .daily-idiom {
    font-size: 28px;
    font-weight: 700;
    color: #1f3d73;
    line-height: 1.2;
}
.home-redesign-v5 .daily-idiom-pinyin {
    font-size: 14px;
    color: #7a879b;
}
.home-redesign-v5 .daily-idiom-desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #596982;
    min-height: 54px;
    flex: 1;
}
.home-redesign-v5 .home-side-tools {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 18px;
}
.home-redesign-v5 .home-side-tools a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    min-height: 58px;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(47, 99, 184, 0.07);
    color: #40639c;
    font-size: 14px;
    transition: all 0.2s ease;
}
.home-redesign-v5 .home-side-tools a strong {
    font-size: 14px;
    line-height: 1.2;
    color: #284b85;
}
.home-redesign-v5 .home-side-tools a span {
    font-size: 12px;
    line-height: 1.4;
    color: #6f7f96;
}
.home-redesign-v5 .home-side-tools a:hover {
    background: rgba(47, 99, 184, 0.12);
    transform: translateY(-1px);
}
.home-redesign-v5 .home-task-grid,
.home-redesign-v5 .home-topic-grid,
.home-redesign-v5 .home-reading-grid,
.home-redesign-v5 .home-faq-grid {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}
.home-redesign-v5 .home-task-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-redesign-v5 .home-task {
    padding: 24px;
}
.home-redesign-v5 .home-task h3,
.home-redesign-v5 .home-topic h3,
.home-redesign-v5 .home-faq-item h3,
.home-redesign-v5 .home-guideline h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #1c2d48;
}
.home-redesign-v5 .home-task p,
.home-redesign-v5 .home-topic p,
.home-redesign-v5 .home-faq-item p,
.home-redesign-v5 .home-guideline p {
    margin: 0;
    color: #62738b;
    line-height: 1.9;
}
.home-redesign-v5 .home-link-grid,
.home-redesign-v5 .home-topic-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.home-redesign-v5 .home-link-grid a,
.home-redesign-v5 .home-topic-links a {
    padding: 9px 14px;
    border-radius: 12px;
    background: #f7faff;
}
.home-redesign-v5 .home-core-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 0;
}
.home-redesign-v5 .home-panel {
    padding: 24px;
}
.home-redesign-v5 .home-core-card {
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(32, 59, 98, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.home-redesign-v5 .home-core-card:hover {
    box-shadow: 0 12px 28px rgba(32, 59, 98, 0.08);
}
.home-redesign-v5 .home-core-card-cidian {
    background: #fff;
}
.home-redesign-v5 .home-core-card-zuci {
    background: #fff;
}
.home-redesign-v5 .home-core-card-chengyu {
    background: #fff;
}
.home-redesign-v5 .home-core-card .home-panel-head {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-bottom: 14px;
    border-bottom: 1px solid #eef2f6;
}
.home-redesign-v5 .home-core-title {
    min-width: 0;
    width: 100%;
}
.home-redesign-v5 .home-core-title > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}
.home-redesign-v5 .home-core-title h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.35;
    color: #1d2b40;
}
.home-redesign-v5 .home-core-card .home-panel-head > p {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    color: #6d7b8f;
}
.home-redesign-v5 .home-core-card .home-panel-head a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* min-width: 84px; */
    min-height: 34px;
    padding: 0 14px;
    border-radius: 8px;
    background: #f7f9fc;
    border: 1px solid #e6ebf2;
    color: #4f6179;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex: 0 0 auto;
}
.home-redesign-v5 .home-core-card .home-panel-head a:hover {
    border-color: #d7dee8;
    color: #2d4059;
    background: #fff;
}
.home-redesign-v5 .home-link-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}
.home-redesign-v5 .home-core-card .home-link-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}
.home-redesign-v5 .home-link-list li {
    margin: 0;
    border-top: 1px solid #eef2f7;
}
.home-redesign-v5 .home-link-list li:first-child {
    border-top: 0;
}
.home-redesign-v5 .home-core-card .home-link-list li {
    border-top: 0;
}
.home-redesign-v5 .home-link-list li a {
    display: flex;
    gap: 12px;
    align-items: baseline;
    padding: 13px 0;
    line-height: 1.7;
    color: #22324c;
}
.home-redesign-v5 .home-core-card .home-link-list li a {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    min-height: 48px;
    padding: 14px 12px;
    border: 1px solid #edf1f5;
    border-radius: 12px;
    background: #fafbfd;
    transition: all 0.2s ease;
    text-align: center;
}
.home-redesign-v5 .home-core-card .home-link-list li a:hover {
    border-color: #dde5ee;
    background: #fff;
    box-shadow: 0 8px 18px rgba(32, 59, 98, 0.06);
}
.home-redesign-v5 .home-link-list li a span {
    flex: 0 0 auto;
    min-width: 84px;
    color: #7a879b;
    font-size: 12px;
}
.home-redesign-v5 .home-core-card .home-link-list li a .home-core-pinyin {
    min-width: 0;
    color: #7f8ca0;
    font-size: 11px;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0;
}
.home-redesign-v5 .home-core-word {
    display: block;
    color: #21324b;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 500;
    text-align: center;
    word-break: break-all;
}
.home-redesign-v5 .home-writing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}
.home-redesign-v5 .home-writing-panel {
    padding: 24px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(32, 59, 98, 0.05);
}
.home-redesign-v5 .home-writing-intro {
    margin: 14px 0 0;
    color: #62738b;
    line-height: 1.9;
}
.home-redesign-v5 .home-writing-links {
    margin-top: 16px;
}
.home-redesign-v5 .home-writing-links a {
    background: #f5f8ff;
}
.home-redesign-v5 .home-article-list,
.home-redesign-v5 .home-compact-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}
.home-redesign-v5 .home-article-list li,
.home-redesign-v5 .home-compact-list li {
    padding: 10px 0;
    border-top: 1px solid #eef2f7;
}
.home-redesign-v5 .home-article-list li:first-child,
.home-redesign-v5 .home-compact-list li:first-child {
    border-top: 0;
    padding-top: 0;
}
.home-redesign-v5 .home-article-list a,
.home-redesign-v5 .home-compact-list a {
    display: block;
    color: #22324c;
    line-height: 1.8;
}
.home-redesign-v5 .home-article-list p {
    margin: 8px 0 0;
    color: #6c7b91;
    line-height: 1.8;
    font-size: 14px;
}
.home-redesign-v5 .home-topic-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.home-redesign-v5 .home-topic {
    padding: 22px;
}
.home-redesign-v5 .home-reading-grid,
.home-redesign-v5 .home-faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-redesign-v5 .home-reading-grid .home-panel {
    min-width: 0;
}
.home-redesign-v5 .home-reading-grid .home-compact-list li,
.home-redesign-v5 .home-reading-grid .home-compact-list a {
    width: 100%;
    min-width: 0;
}
.home-redesign-v5 .home-reading-grid .home-compact-list a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.home-redesign-v5 .home-faq-item,
.home-redesign-v5 .home-guideline {
    padding: 22px;
}
.home-redesign-v5 .home-guideline-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}
/* 闁氨鏁ら崣鎴︾叾閹稿鎸?*/
.pron-audio-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pron-audio-row,
.word-pron-item {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pron-audio-text,
.word-pron-text {
    display: inline-flex;
    align-items: center;
    line-height: 1.5;
}

.pron-audio-button,
.word-pron-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    border: 1px solid #d8e4f3;
    border-radius: 999px;
    background: #fff;
    color: #2f63b8;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pron-audio-button:hover,
.word-pron-button:hover {
    border-color: #b8cce8;
    background: #f6faff;
    color: #214b8d;
    transform: translateY(-1px);
}

.pron-audio-button.is-playing,
.word-pron-button.is-playing {
    border-color: #2f63b8;
    background: #2f63b8;
    color: #fff;
}


