/* main.css - 湖北文化产业发展投资有限公司首页 */

:root {
    --color-primary: #a8752c;
    --color-secondary: #d7b37e;
    --color-accent: #c09b62;
    --color-dark: #44260f;
    --color-text: #4b3b2e;
    --color-muted: #7b6a59;
    --color-bg: #f7f1e6;
    --color-card: #fff9f0;
    --shadow-soft: 0 20px 40px rgba(68, 38, 15, 0.08);
    --radius-lg: 20px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --max-width: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

.page-bg-texture {
    position: fixed;
    inset: 0;
    background-image:
            radial-gradient(rgba(168, 117, 44, 0.08) 1px, transparent 1px),
            url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h200v200H0z' fill='%23f0e8db'/%3E%3C/svg%3E");
    background-size: 180px 180px, cover;
    opacity: 0.7;
    z-index: -2;
}

.container {
    width: min(100% - 3rem, var(--max-width));
    margin: 0 auto;
}

.section-spacing {
    padding: 80px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.5rem 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #c68b3a, #a3661f);
    color: #fff;
    box-shadow: 0 15px 30px rgba(163, 102, 31, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.section-header h2 {
    font-family: "Noto Serif SC", "Songti SC", serif;
    font-size: 2rem;
    color: var(--color-dark);
    margin: 0;
}

.section-header p {
    margin: 0;
    color: var(--color-muted);
}

.business-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 40px;
}

.business-header h2 {
    margin-bottom: 8px;
}

.business-header p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
}

.link-more {
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.link-more::after {
    content: "→";
}

.news-header {
    border-bottom: 1px solid rgba(168, 117, 44, 0.2);
    padding-bottom: 12px;
}

.news-more {
    font-weight: 600;
    color: var(--color-primary);
    border: 1px solid rgba(168, 117, 44, 0.4);
    border-radius: 5px;
    padding: 6px 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.news-more::after {
    content: "→";
}

.news-more:hover {
    background: rgba(168, 117, 44, 0.1);
    border-color: var(--color-primary);
}

.card {
    /* background: var(--color-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft); */
    overflow: hidden;
}

.news-slide.card {
    background: transparent;
    box-shadow: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(247, 241, 230, 0.1);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(168, 117, 44, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-dark);
}

.brand img {
    width: 125px
}

.brand-text {
    line-height: 1.1;
}

.brand-main {
    font-family: "Noto Serif SC", serif;
    font-size: 1.2rem;
    color: var(--color-dark);
}

.brand-en {
    font-size: 0.8rem;
    color: var(--color-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    gap: 28px;
    font-weight: 600;
    color: var(--color-text);
    justify-content: center;
    align-items: center;
    flex: 1;
}

.nav-item {
    position: relative;
}

.nav-item--has-dropdown {
    padding: 14px 0;
}

.nav-link {
    position: relative;
    padding-bottom: 6px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.nav-link.is-active {
    color: var(--color-primary);
}

.nav-dropdown {
    position: absolute;
    left: 50%;
    top: calc(100% + 12px);
    transform: translate(-50%, 8px);
    min-width: 180px;
    padding: 10px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(12, 6, 4, 0.15);
    border: 1px solid rgba(120, 72, 26, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 30;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    width: 20px;
    height: 12px;
    transform: translateX(-50%);
}

.nav-item--has-dropdown.is-open .nav-dropdown,
.nav-item--has-dropdown:hover:not(.nav-item--no-hover) .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-item--has-dropdown.nav-item--no-hover .nav-dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
}

.dropdown-link {
    display: block;
    padding: 12px 28px;
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.4;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    white-space: nowrap;
}

.dropdown-link:hover,
.dropdown-link:focus-visible {
    color: var(--color-primary);
    background: rgba(168, 117, 44, 0.08);
    padding-left: 32px;
}

.header-search {
    display: flex;
    align-items: center;
    border: 1px solid rgba(168, 117, 44, 0.4);
    border-radius: 999px;
    padding: 4px 4px 4px 16px;
    gap: 6px;
    min-width: 240px;
}

.search-input {
    border: none;
    background: transparent;
    font-size: 0.9rem;
    color: var(--color-text);
    outline: none;
}

.search-input::placeholder {
    color: rgba(75, 59, 46, 0.55);
}

.search-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(168, 117, 44, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.search-button img {
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.search-button:hover {
    background: var(--color-primary);
}

.search-button:hover img {
    filter: invert(1);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hero */
.main-content{
    width: 100%
}

.hero {
    position: relative;
    padding: 120px 0 60px;
    background-image: url("../imgs/top-banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-slider {
    position: relative;
}

.hero-slide {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: absolute;
    inset: 0;
    pointer-events: none;
    min-height: 420px;
}

.hero-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.hero-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-family: "Noto Serif SC", serif;
    margin: 12px 0 16px;
    color: var(--color-dark);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--color-muted);
}

.hero-tag {
    display: inline-flex;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(168, 117, 44, 0.12);
    color: var(--color-primary);
    font-weight: 600;
}

.hero-visual {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hero-visual img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.hero-controls button {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.hero-controls button span {
    font-weight: 700;
}

.hero-controls button:hover {
    transform: scale(1.05);
}
.dot-wrap {
    width: 1200px;
    margin: 0 auto;
}
.hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    max-width: 200px;
}

.hero-dots .dot {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    border: none;
    background: rgba(168, 117, 44, 0.2);
    cursor: pointer;
    transition: background 0.3s ease;
    text-indent: -9999px;
    overflow: hidden;
}

.hero-dots .dot.is-active {
    background: var(--color-primary);
}

/* News */
.contact-section-wrap {
    background: #FFF
}
.contact-section-wrap-01 {
    background-image: url("../imgs/shufa-bg.png");
    background-size: 30%;
    background-position: top right;
    background-repeat: no-repeat;
}
.news, .business, .party, .notices , .contact, .banners {
    width: 1200px;
    margin: 0 auto;
}
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
    width: 100%;
    min-width: 0;
}

.news-slider {
    width: 590px;
    height: 446px;
    position: relative;
    min-width: 0;
    aspect-ratio: 750 / 534;
    overflow: hidden;
}

.news-slide {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.news-slide.is-active {
    opacity: 1 !important;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 1;
    position: absolute;
}

.news-feature {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 0;
}

.news-feature figure {
    margin: 0;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.news-feature img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
    border-radius: 0;
}

.news-feature__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 24px 18px;
    z-index: 10;
}

.news-dots-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
}

.news-dots-overlay .news-feature__overlay {
    pointer-events: none;
}

.news-dots-overlay .news-dots {
    pointer-events: auto;
}

.news-feature__body {
    padding: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
}

.news-feature__content {
    flex: 1;
    min-width: 0;
}
.news-feature__content p{
    height: 44px;
    margin-bottom: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    box-orient: vertical;
}
.news-date {
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 4px;
}

.news-feature__body h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    color: #fff;
}

.news-feature__body p {
    font-size: 12px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.85);
}

.news-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 50px;
    height: 8px;
    flex-shrink: 0;
}

.news-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
    text-indent: -9999px;
    overflow: hidden;
    padding: 0;
}

.news-dots .dot.is-active {
    background: var(--color-primary);
}

.news-list {
    width: 590px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.news-item {
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 2px;
    background: #fff;
    border: 0.5px solid rgba(183, 147, 111, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.news-item--featured {
    background: #b7936f;
    border: none;
}

.news-item__content {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding-bottom: 16px;
    border-bottom: 0.5px solid rgba(183, 147, 111, 0.2);
}

.news-item--featured .news-item__content {
    border-bottom-color: #f7f7f8;
}

.news-item__content h4 {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-item--featured .news-item__content h4 {
    color: #fff;
}

.news-item__content p {
    height: 44px;
    margin: 0;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.58);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item--featured .news-item__content p {
    color: #fff;
}

.news-item__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-item__date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.news-item__date .day {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.9);
    white-space: pre;
}

.news-item--featured .news-item__date .day {
    color: #fff;
}

.news-item__date .year {
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4);
    white-space: pre;
}

.news-item--featured .news-item__date .year {
    color: #fff;
}

.news-item__arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(183, 147, 111, 1);
}

.news-item--featured .news-item__arrow {
    color: #fff;
}

.news-item__arrow svg {
    width: 100%;
    height: 100%;
}

/* Business */
.business-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    width: 100%;
}

.business-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0;
    padding: 22px 26px;
    box-shadow: none;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    cursor: pointer;
    position: relative;
}

.business-card a{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px
}

.business-card:nth-child(odd) a{
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 30px
}

.business-card-a {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0;
    padding: 22px 26px;
    box-shadow: none;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    cursor: pointer;
    position: relative;
}

.business-hr {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(183, 147, 111, 0.5);
}

.business-card:hover {
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(68, 38, 15, 0.12);
    background: #B7936F;
}

.business-card:hover h3,
.business-card:hover p,
.business-card:hover h2 {
    color: #ffffff;
}


.business-card:hover .business-hr {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}


.business-card:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(168, 117, 44, 0.2);
    background: #B7936F;
    color: #ffffff;
}

.business-card:focus h3,
.business-card:focus p {
    color: #ffffff;
}

.business-card:focus .business-hr {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}


.business-card:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(168, 117, 44, 0.2);
    background: #B7936F;
    color: #ffffff;
}

.business-card:focus-visible h3,
.business-card:focus-visible p {
    color: #ffffff;
}

.business-card:focus-visible .business-hr {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}


.business-card:active {
    transform: translateY(-2px);
}

.business-card h3 {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.4;
}

.business-card p {
    margin: 0 0 auto;
    font-size: 12px;
    line-height: 1.6;
    color: var(--color-muted);
    flex: 1;
}

.business-card__arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(183, 147, 111, 1);
    margin-top: 20px;
    align-self: flex-start;
    position: relative;
}

.business-card__arrow-default {
    width: 100%;
    height: 100%;
    display: block;
}

.business-card__arrow-selected {
    width: 100%;
    height: 100%;
    display: none;
    object-fit: contain;
}

.business-card:hover .business-card__arrow-default,
.business-card:focus .business-card__arrow-default,
.business-card:focus-visible .business-card__arrow-default {
    display: none;
}

.business-card:hover .business-card__arrow-selected,
.business-card:focus .business-card__arrow-selected,
.business-card:focus-visible .business-card__arrow-selected {
    display: block;
}

.business-card__arrow svg {
    width: 100%;
    height: 100%;
}

/* Party */
.party-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.party-feature {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 32px;
    border-radius: 2px;
}

.party-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 0;
}

.party-header {
    padding-bottom: 32px;
    border-bottom: 0.5px solid rgba(183, 147, 111, 0.5);
}

.party-header h3 {
    margin: 0;
    font-family: "PingFang SC", "Noto Sans SC", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    color: rgba(0, 0, 0, 0.9);
}

.party-body {
    padding: 0;
    flex: 1;
}

.party-body p {
    margin: 0;
    font-family: "PingFang SC", "Noto Sans SC", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.58);
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.party-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.party-date {
    font-family: "PingFang SC", "Noto Sans SC", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.58);
    white-space: pre;
}

.party-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 13px 4px 20px;
    background: #b07d49;
    border-radius: 2px;
    color: white;
    font-family: "PingFang SC", "Noto Sans SC", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.party-detail-btn:hover {
    background: #9a6a3d;
}

.party-detail-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.party-image {
    margin: 0;
    width: 476px;
    height: 280px;
    overflow: hidden;
    border-radius: 2px;
    flex-shrink: 0;
}

.party-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.party-banners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.party-banner-item {
    background: linear-gradient(135deg, #c0392b, #d35400);
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.party-banner-item h4 {
    margin: 0;
    font-family: "PingFang SC", "Noto Sans SC", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: white;
    text-align: center;
    padding: 0 20px;
    z-index: 1;
    position: relative;
}

/* Red banners */
.banners {
    padding: 20px 0 60px;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.banner-card {
    background: linear-gradient(135deg, #c0392b, #d35400);
    color: #fff;
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.banner-card h3 {
    margin-top: 0;
}

/* Notices */
.notice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.notice-card {
    border: 0.5px solid rgba(162, 97, 44, 0.5);
    border-radius: 2px;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.notice-date-area {
    width: 69px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.notice-date-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.notice-date-main {
    font-family: "PingFang SC", "Noto Sans SC", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    color: rgba(0, 0, 0, 0.9);
    margin: 0;
}

.notice-date-year {
    font-family: "PingFang SC", "Noto Sans SC", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.4);
    margin: 0;
}

.notice-date-divider {
    width: 48px;
    height: 0;
    border-top: 0.5px solid rgba(183, 147, 111, 0.5);
    margin-top: auto;
}

.notice-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 13px;
    min-width: 0;
}

.notice-title {
    margin: 0;
    font-family: "PingFang SC", "Noto Sans SC", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.9);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice-desc {
    margin: 0;
    font-family: "PingFang SC", "Noto Sans SC", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.58);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer */
.site-footer {
    background: #75614d;
    padding: 33px 120px;
    color: #fff;
    position: relative;
    z-index: 1;
    width: 100%;
}

.footer-bar {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-brand img {
    width: 123px;
    height: auto;
}

.footer-info-line {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    font-family: "Alibaba PuHuiTi 3.0", "PingFang SC", "Noto Sans SC", sans-serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: #fff;
}

.footer-info-line span {
    white-space: normal;
}

.footer-qr {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
}

.footer-qr-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-qr-inner {
    position: absolute;
    inset: 33%;
    border-radius: 999px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.footer-qr-inner img {
    width: 32px;
    height: auto;
}

/* Responsive */
@media (max-width: 1199px) {
    .site-nav {
        gap: 16px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .party-feature {
        flex-direction: column;
    }

    .party-image {
        width: 100%;
        height: auto;
        aspect-ratio: 476 / 280;
    }

    .party-banners {
        grid-template-columns: 1fr;
    }

    .business-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .site-footer {
        padding: 33px 40px;
    }

    .footer-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(100% - 2rem, 100%);
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .site-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .hero-actions {
        flex-direction: column;
    }

    .header-search {
        width: 100%;
    }

    .news-list {
        grid-template-columns: 1fr;
    }

    .news-item {
        padding: 20px;
    }

    .news-item__content h4 {
        white-space: normal;
        -webkit-line-clamp: 2;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .business-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .business-card {
        min-height: auto;
    }

    .party-feature {
        padding: 20px;
        gap: 20px;
    }

    .notice-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .notice-card {
        padding: 20px;
        gap: 16px;
        flex-direction: column;
    }

    .notice-date-area {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .notice-date-group {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .notice-date-divider {
        width: 100%;
        height: 0.5px;
        border-top: 0.5px solid rgba(183, 147, 111, 0.5);
        margin: 0;
    }

    .party-header h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .party-body p {
        font-size: 14px;
        line-height: 24px;
    }

    .party-banners {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .party-banner-item {
        height: 120px;
    }

    .party-banner-item h4 {
        font-size: 16px;
    }

    .site-footer {
        padding: 24px;
    }

    .footer-info-line {
        font-size: 16px;
        line-height: 24px;
        gap: 16px;
    }

    .footer-bar {
        gap: 24px;
    }

    .footer-qr {
        align-self: flex-start;
    }
}

/* 列表页样式 */
.list-main {
    background-color: #fefdfb;
}

.list-hero {
    position: relative;
    padding: 100px 0 100px;
    overflow: hidden;
    background: #F7F1E9;
}

.list-hero__ornaments img {
    position: absolute;
    pointer-events: none;
}

.list-hero__texture {
    width: 720px;
    opacity: 0.55;
    top: -80px;
}

.list-hero__texture--left {
    left: -220px;
}

.list-hero__texture--right {
    right: -220px;
    transform: scaleX(-1);
}

.list-hero__phoenix {
    width: 200px;
    left: 40px;
    top: 10px;
    opacity: 0.7;
    transform: scaleX(-1);
}

#list-news-title{
    color: #333
}
.list-hero__ink {
    width: 520px;
    right: 60px;
    top: -80px;
    opacity: 0.3;
}

.list-hero__tower {
    width: 160px;
    right: 70px;
    top: 200px;
    opacity: 0.4;
}

.list-hero__mountains {
    width: 360px;
    bottom: -60px;
    opacity: 0.5;
}

.list-hero__mountains--left {
    left: 50px;
}

.list-hero__mountains--right {
    right: 120px;
    transform: scaleX(-1);
}

.list-hero__content {
    position: relative;
    z-index: 1;
}

.list-hero__content p {
    font-family: "Alibaba PuHuiTi 3.0", "Noto Serif SC", "Microsoft YaHei", sans-serif;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: left;
    color: #573917;
}

.list-meta {
    background-color: #b7936f;
    color: #fff;
}

.list-meta__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #fff;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
    opacity: 0.85;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span[aria-current="page"] {
    font-weight: 600;
}

.breadcrumb-sep::before {
    content: "›";
    display: inline-block;
    font-size: 18px;
}

.news-tabs {
    display: flex;
    align-items: center;
    gap: 32px;
    color: rgba(255, 255, 255, 0.85);
}

.news-tab {
    background: none;
    border: none;
    color: inherit;
    font-size: 16px;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    cursor: pointer;
    padding: 6px 0;
    position: relative;
}

.news-tab:not(.is-active)::before,
.news-tab:not(.is-active)::after {
    content: "";
    position: absolute;
    top: 32%;
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.45);
}

.news-tab:not(.is-active)::before {
    left: -16px;
}

.news-tab:not(.is-active)::after {
    right: -16px;
}

.news-tab:is(:hover, :focus-visible) {
    color: #fff;
}

.news-tab.is-active {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 6px 16px;
}

.list-news {
    background-color: #fefdfb;
}

.list-news__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.list-news__title span {
    display: inline-block;
    font-size: 36px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
    letter-spacing: 2px;
}

.list-main .list-news__title span {
    color: #fff;
}

.list-news__decor-image {
    width: 210px;
    max-width: 28vw;
    height: auto;
}

.list-news__decor-image--right {
    transform: scaleX(-1);
}

.news-listing {
    display: flex;
    flex-direction: column;
}

.news-list-item a{
    display: flex;
    gap: 24px;
    padding: 48px 0;
    border-bottom: 0.8px solid rgba(176, 125, 73, 0.2);
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-thumb {
    flex: 0 0 300px;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content h2 {
    font-size: 22px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 12px;
}

.news-content p {
    font-size: 16px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.58);
    margin-bottom: 16px;
}

.news-content time {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.58);
}

.list-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 32px;
    border-top: 0.8px solid rgba(176, 125, 73, 0.2);
    margin-top: 16px;
}

.list-pagination__summary {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.58);
    margin: 0;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-btn {
    min-width: 32px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid #ebecef;
    background: #fff;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.page-btn--icon span {
    font-size: 18px;
    line-height: 1;
}

.page-btn:is(:hover, :focus-visible) {
    color: #b7936f;
    border-color: #b7936f;
}

.page-btn.is-active {
    background: #b7936f;
    border-color: #b7936f;
    color: #fff;
}

.page-ellipsis {
    min-width: 32px;
    text-align: center;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.5);
}
.fanye{
    display: flex;
    justify-content: right;
}
.fanye ul{
    display: flex;
    gap: 20px
}
.fanye li{
    list-style: none;
}

@media (max-width: 1024px) {
    .news-list-item {
        flex-direction: column;
    }

    .news-thumb {
        width: 100%;
        height: 220px;
    }

    .list-hero {
        padding: 100px 0 100px;
    }

    .list-hero__content p {
        font-size: 36px;
    }

    .news-tab:not(.is-active)::before,
    .news-tab:not(.is-active)::after {
        display: none;
    }

    .list-meta__inner {
        justify-content: center;
        text-align: center;
    }

    .list-news__decor {
        width: 120px;
    }
}

@media (max-width: 640px) {
    .list-hero {
        padding: 80px 0 80px;
    }

    .list-hero__content p {
        font-size: 28px;
    }

    .breadcrumb {
        flex-wrap: wrap;
        justify-content: center;
    }

    .news-tabs {
        flex-direction: column;
        gap: 12px;
    }

    .list-pagination {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ----------------------------
   Detail article page
----------------------------- */
.detail-main {
    background-color: #fefdfb;
    position: relative;
    overflow: hidden;
}

.detail-hero {
    position: relative;
    min-height: 340px;
    padding: 100px 0 40px;
    overflow: hidden;
    background: #F7F1E9;
}

.detail-hero__ornaments {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.detail-hero__texture {
    position: absolute;
    width: 902px;
    height: 902px;
    opacity: 0.48;
}

.detail-hero__texture--left {
    left: -180px;
    top: -140px;
}

.detail-hero__texture--right {
    right: -180px;
    top: -120px;
}

.detail-hero__phoenix {
    position: absolute;
    width: 200px;
    left: -40px;
    top: -40px;
    opacity: 0.72;
}

.detail-hero__ink {
    position: absolute;
    width: 527px;
    right: 120px;
    top: -110px;
    opacity: 0.3;
}

.detail-hero__tower {
    position: absolute;
    width: 253px;
    right: 60px;
    bottom: 0;
    opacity: 0.4;
}

.detail-hero__mountain {
    position: absolute;
    bottom: -200px;
    left: 40px;
    width: 480px;
    opacity: 0.6;
}

.detail-hero__mountain--right {
    left: auto;
    right: 200px;
    width: 304px;
    transform: scaleX(-1);
}

.detail-hero__content {
    position: relative;
    text-align: left;
    color: #573917;
    font-size: 48px;
    line-height: 1.2;
    font-family: "PingFang SC", "Alibaba PuHuiTi 3.0", "Noto Sans SC", sans-serif;
    font-weight: 600;
}

.detail-breadcrumb-bar {
    background-color: #b7936f;
    color: #fff;
}

.detail-breadcrumb-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 20px 0;
}

.detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 24px;
    font-family: "PingFang SC", "Noto Sans SC", sans-serif;
}

.detail-breadcrumb a,
.detail-breadcrumb span {
    color: #fff;
}

.detail-breadcrumb__sep {
    font-size: 18px;
    line-height: 1;
}

.detail-tabs {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 16px;
    line-height: 24px;
    font-family: "PingFang SC", "Noto Sans SC", sans-serif;
    color: rgba(255, 255, 255, 0.8);
}

.detail-tab {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    padding: 0;
    cursor: pointer;
}

.detail-tab.is-active {
    color: #fff;
    font-weight: 600;
}

.detail-tab__divider {
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.6);
}

.detail-article {
    background-color: #fefdfb;
}

.detail-article__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.detail-article__heading {
    text-align: center;
    margin-bottom: 32px;
}

.detail-article__heading h1 {
    font-size: 28px;
    line-height: 52px;
    color: rgba(0, 0, 0, 0.9);
    font-weight: 500;
    margin-bottom: 16px;
    font-family: "PingFang SC", "Alibaba PuHuiTi 3.0", "Noto Sans SC", sans-serif;
}

.detail-article__meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 18px;
    line-height: 26px;
    color: rgba(0, 0, 0, 0.58);
}

.detail-article__body {
    margin-bottom: 48px;
}

.detail-article__body p {
    font-size: 22px;
    line-height: 38px;
    color: rgba(0, 0, 0, 0.9);
    text-align: justify;
    margin-bottom: 24px;
}

.detail-article__body p:last-child {
    margin-bottom: 0;
}

.detail-article__body--secondary p {
    font-size: 20px;
    line-height: 34px;
}

.detail-article__highlight {
    font-weight: 600;
}

.detail-figure {
    margin: 48px auto;
    text-align: center;
}

.detail-figure img {
    display: block;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(19, 11, 0, 0.08);
}

.detail-figure figcaption {
    font-size: 18px;
    line-height: 26px;
    color: rgba(0, 0, 0, 0.58);
    margin-top: 16px;
}

.detail-figure--small img {
    border-radius: 20px;
}

@media (max-width: 1200px) {
    .detail-hero__content {
        font-size: 40px;
        padding: 0 24px;
    }

    .detail-breadcrumb-bar__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .detail-tabs {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        row-gap: 12px;
    }

    .detail-article__inner {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .detail-hero {
        min-height: 260px;
    }

    .detail-hero__content {
        font-size: 28px;
        text-align: center;
    }

    .detail-breadcrumb {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .detail-tabs {
        gap: 16px;
    }

    .detail-article__heading h1 {
        font-size: 24px;
        line-height: 36px;
    }

    .detail-article__meta {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .detail-article__body p {
        font-size: 18px;
        line-height: 32px;
    }

    .detail-article__body--secondary p {
        font-size: 18px;
        line-height: 30px;
    }

    .detail-figure {
        margin: 32px auto;
    }
}

/* ----------------------------
   Business page
----------------------------- */
.business-main {
    background-color: #fefdfb;
    padding-bottom: 120px;
}

.business-section {
    width: 100%;
}

.business-section--headline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 64px 0 48px;
    text-align: center;
}

.business-section--headline h1 {
    font-size: 36px;
    color: rgba(0, 0, 0, 0.9);
    font-weight: 500;
    font-family: "PingFang SC", "Noto Sans SC", sans-serif;
}

.business-headline__decor {
    width: 175px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-headline__decor img {
    width: 100%;
    height: auto;
}

.business-section--cards {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.business-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    border-radius: 4px;
    background-color: #fff;
}

.row-card {
    flex-direction: row;
    gap: 30px;
    border-bottom: 0.5px solid rgba(183, 147, 111, 0.2);
}
.business-card--reverse {
    flex-direction: row-reverse;
}

.business-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.business-card__content h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
    padding-bottom: 32px;
    border-bottom: 0.5px solid rgba(183, 147, 111, 0.2);
}

.business-card__content p {
    font-size: 16px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.9);
    text-align: justify;
}

.business-card__media {
    width: 476px;
    height: 280px;
    overflow: hidden;
    border-radius: 6px;
}

.business-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1200px) {
    .business-section--cards {
        padding: 0 24px 32px;
    }

    .business-card__media {
        width: 50%;
    }
}

@media (max-width: 900px) {
    .business-card,
    .business-card--reverse {
        flex-direction: column;
    }

    .business-card__media {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .business-section--headline {
        flex-direction: column;
        gap: 16px;
        padding: 48px 0 32px;
    }

    .business-headline__decor {
        width: 120px;
    }

    .business-card {
        padding: 24px;
    }

    .business-card__content h2 {
        font-size: 20px;
        line-height: 30px;
    }

    .business-card__content p {
        font-size: 15px;
        line-height: 26px;
    }
}

/* ----------------------------
   Company page
----------------------------- */
.company-main {
    background-color: #fefdfb;
    padding-bottom: 120px;
}

.company-headline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 64px 0 48px;
}

.company-headline h1 {
    font-size: 36px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
    letter-spacing: 2px;
}

.company-headline__decor {
    width: 174px;
    height: 20px;
}

.company-headline__decor img {
    width: 100%;
    height: auto;
}

.company-slider {
    width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.container-block {
    border: 1px solid #b7936f;
    padding: 30px;
    box-sizing: border-box;
}

.name {
    font-size: 24px;
    font-weight: 600;
}

.fg {
    width: 60px;
    border: none;
    border-bottom: .5px solid #b7936f;
    padding-top: 20px;
    margin-bottom: 20px
}

.company-slider__viewport {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 24px 50px rgba(19, 11, 0, 0.08);
}

.company-slider__track {
    display: flex;
    transition: transform 0.6s ease;
}

.company-slider__slide {
    margin: 0;
    flex: 0 0 100%;
    min-width: 100%;
    height: 360px;
}

.company-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.company-slider__arrow {
    position: absolute;
    top: 47%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(87, 57, 23, 0.8);
    color: #fff;
    cursor: pointer;
}

.company-slider__arrow--prev {
    left: 16px;
}

.company-slider__arrow--next {
    right: 16px;
}

.company-slider__arrow::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

.company-slider__arrow--prev::before {
    transform: rotate(225deg);
    margin-left: 4px;
}

.company-slider__arrow--next::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

.company-slider__dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.company-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #b7936f;
    background: transparent;
    cursor: pointer;
}

.company-slider__dot.is-active {
    background: #b7936f;
}

.company-slider__caption {
    margin-top: 16px;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    color: rgba(0, 0, 0, 0.58);
}

.company-content {
    max-width: 1200px;
    margin: 0 auto;
}

.company-content p {
    font-size: 22px;
    line-height: 38px;
    color: rgba(0, 0, 0, 0.9);
    text-align: justify;
    margin-bottom: 24px;
}

.company-strong {
    font-weight: 600;
}

@media (max-width: 1200px) {
    .company-slider {
        padding: 0 24px;
    }

    .company-slider__slide {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .company-headline {
        flex-direction: column;
        gap: 16px;
        padding: 48px 0 32px;
    }

    .company-headline__decor {
        width: 120px;
    }

    .company-slider__slide {
        height: 220px;
    }

    .company-slider__arrow {
        width: 36px;
        height: 36px;
    }

    .company-content p {
        font-size: 18px;
        line-height: 32px;
    }
}
