.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
}

body {
    padding-top: 112px;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 92px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.site-logo img {
    width: 87px;
    height: auto;
    display: block;
    border-radius: 10px;
}

.site-nav-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex: 1;
}

.site-nav-main.collapse:not(.show) {
    display: flex;
}

.site-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1;
}

.site-menu li {
    white-space: nowrap;
}

.site-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    height: 42px;
    padding: 0 18px;
    color: #2b2b2b;
    font-size: 16px;
    text-decoration: none;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.site-menu > li > a:hover,
.site-menu > li > a.is-active {
    background-color: #4ab344;
    color: #ffffff;
}

.site-contact-icon {
    margin-right: 16px;
}

.site-contact-text {
    line-height: 1.4;
}

.site-contact--product {
    gap: 8px;
}

.site-contact-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
    flex-shrink: 0;
}

.site-contact-app-image {
    width: 74px;
    height: 74px;
    display: block;
    border-radius: 10px;
    background-color: #ffffff;
}

.site-contact-app-text {
    margin-top: 2px;
    color: #333333;
    font-size: 11px;
    line-height: 1.2;
}

.site-contact-group {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.site-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid #d9e7d4;
    border-radius: 12px;
    background-color: #ffffff;
    z-index: 1050;
}

.site-menu-toggle:focus {
    outline: none;
    box-shadow: none;
}

.site-menu-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background-color: #4ab344;
    border-radius: 999px;
}

.site-phone {
    color: #4ab344;
    font-size: 20px;
    font-weight: 700;
}

.site-hours {
    color: #666666;
    font-size: 14px;
}

.site-header-extra {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 8px;
}

.site-header-extra-image {
    width: 88px;
    height: 88px;
    display: block;
    border-radius: 12px;
    background-color: #ffffff;
}

.site-header-extra-text {
    margin-top: 8px;
    color: #333333;
    font-size: 14px;
    line-height: 1.3;
}

@media (min-width: 992px) and (max-width: 1200px) {
    body {
        padding-top: 96px;
    }

    .site-nav {
        gap: 16px;
        min-height: 80px;
    }

    .site-logo img {
        width: 72px;
    }

    .site-nav-main {
        gap: 16px;
    }

    .site-menu {
        gap: 12px;
    }

    .site-menu a {
        min-width: 74px;
        height: 38px;
        padding: 0 12px;
        font-size: 14px;
    }

    .site-contact-icon {
        margin-right: 10px;
        width: 26px;
    }

    .site-phone {
        font-size: 17px;
    }

    .site-hours {
        font-size: 12px;
    }

    .site-contact--product {
        gap: 6px;
    }

    .site-contact-app-image {
        width: 64px;
        height: 64px;
    }

    .site-contact-app-text {
        font-size: 11px;
    }

    .site-header-extra-image {
        width: 72px;
        height: 72px;
    }

    .site-header-extra-text {
        font-size: 12px;
    }
}

.hero-banner {
    background-color: #f7f7f7;
}

.hero-banner .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-main {
    padding: 56px 0 72px;
}

.product-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.product-sidebar {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.product-tab {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border: 0;
    border-radius: 14px;
    background-color: transparent;
    color: #2f2f2f;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
}

.product-tab + .product-tab {
    margin-top: 8px;
}

.product-tab.is-active,
.product-tab:hover {
    background-color: #4ab344;
    color: #ffffff;
    border: none;
    outline: none;
}

.product-tab-arrow {
    font-size: 18px;
    line-height: 1;
}

.product-content {
    min-width: 0;
}

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

.product-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.product-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    padding: 20px;
}

.product-card-image img {
    display: block;
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.product-card-name {
    padding: 16px 18px 22px;
    color: #2b2b2b;
    font-size: 16px;
}

.product-empty {
    grid-column: 1 / -1;
    padding: 48px 24px;
    background-color: #ffffff;
    border-radius: 20px;
    color: #666666;
    text-align: center;
}

.product-detail-main {
    padding-bottom: 36px;
}

.product-detail-card {
    display: grid;
    grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    padding: 36px;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.product-detail-image {
    display: block;
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.product-detail-name {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.product-detail-spec,
.product-detail-packaging {
    color: #555555;
    font-size: 18px;
    line-height: 1.8;
}

.product-detail-manual {
    padding-bottom: 72px;
}

.product-detail-manual-item + .product-detail-manual-item {
    margin-top: 24px;
}

.product-detail-manual-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.banner-control {
    width: 84px;
    opacity: 1;
}

.banner-control-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.banner-control-icon img {
    width: 24px;
    height: 24px;
    display: block;
}

.service-section {
    padding: 50px 15px 70px;
}

.section-heading {
    margin: 0 0 50px;
}

.section-heading-title {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.section-heading-index {
    color: #fbca05;
    font-size: 48px;
    font-style: italic;
    line-height: 1;
}

.section-heading-text {
    color: #4ab344;
    font-size: 30px;
    font-weight: 700;
}

.section-heading-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #999999;
    font-size: 14px;
    margin-top: 8px;
}

.section-heading-subtitle::before,
.section-heading-subtitle::after {
    content: "";
    width: 100px;
    height: 1px;
    background-color: #d8d8d8;
}

.service-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.service-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #666666;
    text-align: center;
    height: 100%;
}

.service-card-icon {
    width: 120px;
    height: 120px;
    display: block;
}

.service-card-content {
    width: 180px;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    color: #333333;
    font-size: 18px;
    margin-bottom: 8px;
}

.service-card-desc {
    font-size: 14px;
    line-height: 1.8;
}

.service-main-image {
    padding: 30px 0;
    flex-shrink: 0;
}

.service-main-image img {
    display: block;
    max-width: 100%;
}

.introduce {
    position: relative;
}

.introduce-image {
    display: block;
    width: 100%;
    height: auto;
}

.introduce-content {
    position: absolute;
    top: clamp(24px, 2vw, 64px);
    left: clamp(20px, 8vw, 140px);
    width: min(50vw, 736px);
    color: #ffffff;
}

.introduce-heading {
    position: relative;
}

.introduce-title {
    font-size: clamp(28px, 2.4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
}

.introduce-subtitle {
    margin-top: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    letter-spacing: 2px;
}

.introduce-text {
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.9;
    text-indent: 2em;
}

.introduce-text+.introduce-text {
    margin-top: 16px;
}

.introduce-main {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-bottom: 56px;
}

.introduce-main-text {
    flex: 1 1 0;
    color: #666666;
    font-size: 14px;
    line-height: 36px;
}

.introduce-main-text p {
    margin-bottom: 16px;
    text-indent: 1.5rem;
}

.introduce-main-media {
    flex: 0 0 460px;
}

.introduce-main-image {
    display: block;
    width: 100%;
    height: auto;
}

.medicine-section {
    width: 100%;
    min-height: 300px;
    padding: 40px 0 48px;
    background-image: url("../img/backgroud/2.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.medicine {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.medicine-card {
    text-align: center;
}

.medicine-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 18px;
    background-color: rgba(255, 255, 255, 0.88);
    border-radius: 18px;
}

.medicine-card-image img {
    display: block;
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
}

.medicine-card-name {
    margin-top: 14px;
    color: #666;
    font-size: 16px;
}

.medicine-action {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    border: none;
    outline: none;
}

.medicine-more-btn {
    padding: 15px 40px;
    color: #43b344;
    border: 1px solid #4ab344;
    background-color: transparent;
    outline: none;
}
.medicine-more-btn:focus {
    outline: none;
    box-shadow: none;
}

.lo-section {
    width: 100%;
    margin-top: 48px;
    background-image: url("../img/main/1.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.lo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 350px;
    padding: 40px 15px;
    color: #ffffff;
}

.lo-eyebrow {
    font-size: 30px;
    line-height: 1.3;
}

.lo-title {
    margin-top: 12px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.lo-contact {
    text-align: left;
}

.lo-hotline {
    font-size: 20px;
    line-height: 1.6;
}

.lo-hotline span {
    opacity: 0.86;
}

.lo-btn {
    margin-top: 18px;
    min-width: 160px;
    height: 50px;
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
}

.site-footer {
    background-color: #333333;
    color: #d7d7d7;
}

.site-footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 0.9fr;
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 40px;
}

.site-footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.site-footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer-title {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.site-footer-column a {
    color: #d7d7d7;
    text-decoration: none;
}

.site-footer-column a:hover {
    color: #ffffff;
}

.site-footer-record {
    color: #8b939e;
    text-decoration: none;
}

.site-footer-record:hover {
    color: #ffffff;
    text-decoration: none;
}

.site-footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer-text {
    line-height: 1.8;
}

.site-footer-qrcodes {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
}

.site-footer-qrcode {
    text-align: center;
    color: #f1f1f1;
}

.site-footer-qrcode img {
    display: block;
    width: 120px;
    height: 120px;
    margin: 0 auto 12px;
    background-color: #ffffff;
    padding: 6px;
    border-radius: 12px;
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0;
    color: #b8b8b8;
    text-align: center;
}

.pet-section {
    width: 100%;
    padding: 48px 0;
    background-image: url("../img/backgroud/1.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.pet-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.pet-card {
    background-color: #ffffff;
    text-align: center;
    /* border-radius: 18px; */
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.pet-card-image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.pet-card-body {
    padding: 18px 20px 24px;
}

.pet-card-title {
    color: #222222;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pet-card-desc {
    color: #808080;
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.pagination .page-item.active .page-link {
    background-color: #6c7a95;
    color: #fff;
    outline: none;
    border-color: #fff;
}

.pagination .page-link {
    color: #666;
    background-color: #f8f9fa;
    border-color: #f0f0f0;
}


@media (max-width: 1369px) {
    .introduce-content {
        position: static;
        width: 100%;
        padding: 28px 24px 0;
        color: #333333;
    }

    .introduce-heading {
        position: absolute;
        top: clamp(24px, 2vw, 64px);
        left: clamp(20px, 8vw, 140px);
        width: min(50vw, 736px);
        color: #ffffff;
    }

    .introduce-title {
        font-size: clamp(38px, 4.2vw, 54px);
        color: #ffffff;
    }

    .introduce-subtitle {
        font-size: clamp(18px, 1.8vw, 24px);
        margin-bottom: 0;
        letter-spacing: clamp(1px, 0.35vw, 4px);
        color: #ffffff;
    }

    .introduce-text {
        color: #555555;
    }

    .introduce-text-secondary {
        color: #555555;
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 92px;
    }

    .pet-card-image {
        overflow: hidden;
    }

    .pet-card-image img {
        width: 100%;
    }

    .site-logo img {
        width: 60px;
    }

    .site-nav {
        justify-content: space-between;
        padding: 16px 0;
    }

    .site-menu-toggle {
        display: block;
        position: fixed;
        top: 16px;
        right: 16px;
    }

    .site-contact-group {
        justify-content: center;
        margin-top: 18px;
    }

    .site-header-extra-image {
        width: 56px;
        height: 56px;
    }

    .site-header-extra-text {
        font-size: 12px;
        margin-top: 4px;
    }

    .site-nav-main {
        flex: 0 0 100%;
        width: 100%;
        margin-top: 16px;
        padding: 20px;
        border-radius: 18px;
        background-color: #f7fbf5;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .site-nav-main.collapse:not(.show) {
        display: none;
    }

    .site-nav-main.show,
    .site-nav-main.collapsing {
        display: block;
    }

    .site-menu {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .site-menu a {
        width: 100%;
    }

    .site-contact {
        justify-content: center;
        margin-top: 18px;
    }

    .site-contact--product {
        flex-wrap: wrap;
        gap: 12px;
    }

    .site-contact-app {
        margin-left: 0;
    }

    .site-contact-app-image {
        width: 58px;
        height: 58px;
    }

    .site-contact-app-text {
        font-size: 11px;
        margin-top: 3px;
    }

    .service-layout {
        flex-direction: column;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-detail-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

    .product-detail-media {
        min-height: 280px;
    }

    .product-detail-name {
        font-size: 28px;
    }

    .product-detail-spec,
    .product-detail-packaging {
        font-size: 16px;
    }

    .product-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .product-tab + .product-tab {
        margin-top: 0;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-column {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        align-items: stretch;
    }

    .service-card {
        width: calc(50% - 14px);
        min-height: 280px;
    }

    .introduce-content {
        padding: 28px 24px 0;
    }

    .introduce-heading {
        width: calc(100% - 48px);
    }

    .introduce-main {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 24px;
        padding-bottom: 40px;
    }

    .introduce-main-media {
        flex: 0 0 auto;
        max-width: 420px;
        margin: 0 auto;
    }

    .introduce-main-text {
        line-height: 2;
    }

    .medicine {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lo-inner {
        min-height: 300px;
        padding: 36px 24px;
    }

    .lo-eyebrow {
        font-size: 24px;
    }

    .lo-title {
        font-size: 38px;
    }

    .pet-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer-qrcodes {
        justify-content: flex-start;
    }

    .news-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .news-img {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .news-content {
        width: 100%;
    }

    .news-content .d-flex.justify-content-between {
        display: block;
        flex-direction: column;
        text-align: justify;
    }

    .news-content h5,
    .news-content small {
        display: block;
        margin: 0.25rem 0;
    }

    .news-content small {
        width: 100%;
        text-align: right;
    }

    .news-content > :last-child {
        text-align: justify;
        text-indent: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        overflow: hidden;
    }

    .hero-banner .carousel-item {
        height: 270px;
    }

    .hero-banner .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 575px) {
    .site-logo img {
        width: 52px;
    }

    .site-header-extra-image {
        width: 48px;
        height: 48px;
    }

    .site-phone {
        font-size: 16px;
    }

    .site-contact-app-image {
        width: 52px;
        height: 52px;
    }

    .site-contact-app-text {
        font-size: 10px;
    }

    .site-hours {
        font-size: 12px;
    }

    .site-menu a {
        font-size: 15px;
    }

    .product-main {
        padding: 40px 0 56px;
    }

    .product-sidebar {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-detail-card {
        padding: 18px;
    }

    .product-detail-media {
        min-height: 220px;
        padding: 18px;
    }

    .product-detail-name {
        font-size: 22px;
    }

    .product-detail-spec,
    .product-detail-packaging {
        font-size: 14px;
        line-height: 1.7;
    }

    .product-detail-manual {
        padding-bottom: 56px;
    }

    .product-card-image {
        min-height: 180px;
    }

    .product-card-name {
        font-size: 16px;
    }

    .banner-control {
        width: 56px;
    }

    .banner-control-icon {
        width: 42px;
        height: 42px;
    }

    .banner-control-icon img {
        width: 18px;
        height: 18px;
    }

    .section-heading-index {
        font-size: 38px;
    }

    .site-footer-qrcodes {
        justify-content: space-evenly;
    }

    .site-footer-qrcode div {
        text-align: center;
    }

    .section-heading-text {
        font-size: 24px;
    }

    .service-card-content {
        width: 100%;
        max-width: 240px;
    }

    .service-card {
        width: 100%;
        min-height: auto;
    }

    .service-main-image {
        padding: 10px 0;
    }

    .introduce-content {
        padding: 24px 16px 0;
    }

    .introduce-heading {
        width: calc(100% - 32px);
    }

    .introduce-subtitle {
        font-size: clamp(16px, 4vw, 20px);
        margin-bottom: 18px;
        letter-spacing: 1px;
    }

    .introduce-text {
        line-height: 1.8;
    }

    .introduce-main {
        gap: 18px;
        padding-bottom: 32px;
    }

    .introduce-main-text {
        font-size: 13px;
        line-height: 1.9;
    }

    .introduce-main-text p {
        margin-bottom: 12px;
    }

    .introduce-main-media {
        max-width: 300px;
    }

    .medicine {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .medicine-card-image {
        min-height: 160px;
    }

    .medicine-card-name {
        font-size: 16px;
    }

    .lo-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        min-height: 260px;
        padding: 28px 16px;
    }

    .lo-eyebrow {
        font-size: 18px;
    }

    .lo-title {
        font-size: 28px;
    }

    .lo-contact {
        text-align: left;
    }

    .lo-hotline {
        font-size: 16px;
    }

    .pet-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pet-section {
        padding: 36px 0;
    }

    .pet-card-image {
        min-height: 180px;
        overflow: hidden;
    }

    .pet-card-image img {
        width: 100%;
    }

    .site-footer-qrcode {
        text-align: left;
    }

    .site-footer-qrcode img {
        margin-left: 0;
    }

    .news-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .news-img {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .news-content {
        width: 100%;
    }

    .news-content .d-flex.justify-content-between {
        display: block;
        flex-direction: column;
        text-align: justify;
    }

    .news-content h5,
    .news-content small {
        display: block;
        margin: 0.25rem 0;
    }

    .news-content small {
        text-align: right;
    }

    .news-content > :last-child {
        text-align: justify;
        text-indent: 1.5rem;
    }

    .hero-banner {
        overflow: hidden;
    }

    .hero-banner .carousel-item {
        height: 270px;
    }

    .hero-banner .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right;
    }

    .hero-banner .carousel-item:nth-child(2) img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left;
    }
}