@charset "utf-8";

/*
Theme Name: ero-niji
Theme URI: https://ero-niji.com
Description: ero-niji.com 用テーマ
Version: 1.0
Author: ero-niji
Author URI: https://ero-niji.com
*/

* {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}
p,
div,
figure {
    margin: 0;
    padding: 0;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
}
ul,
ol,
li {
    list-style: none;
    margin: 0 0;
    padding: 0 0;
}
img {
    vertical-align: middle;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    margin: 0 0;
}

html {
    font-family:
        -apple-system, BlinkMacSystemFont, Arial, Helvetica, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium",
        YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
body {
    margin: 0 0;
    padding: 0 0;
}
a {
    color: var(--linkColor);
}
a:hover {
    color: var(--linkHoverColor);
}
input[type="text"],
input[type="number"],
textarea {
    font-size: 16px !important;
}

:root {
    /* Theme colors */
    --mainColor: #ff367c; /* main */
    --mainColorRgb: 255, 54, 124;
    --mainColorHover: #e62f70;

    --subColor: #ff79a8; /* sub */
    --subColorRgb: 255, 121, 168;
    --subColorHover: #ff5a94;

    /* Backward-compat alias (used in a few places) */
    --accentColor: var(--subColor);

    /* Common tokens */
    --linkColor: var(--mainColor);
    --linkHoverColor: var(--mainColorHover);
    --chipBg: rgba(var(--mainColorRgb), 0.12);
    --baseColor: #eee;
}

#header {
    width: 100%;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    background: rgba(var(--mainColorRgb), 0.88);
    z-index: 999;
}
#content {
    display: flex;
    flex-direction: column;
    margin: 64px auto 0;
}
#main {
    width: 100%;
    margin: 0 0;
    padding: 0 0 16px;
}
#main > article,
#main > section,
#main > aside,
#main > nav {
    padding: 12px 12px;
}
#sidebar {
    width: 100%;
    margin: 0 0;
    padding: 0 0 16px;
}
#sidebar > div {
    padding: 12px 12px;
}
#footer {
    width: 100%;
    background: #f0f0f0;
}
#footer > div {
    padding: 12px 12px;
}
@media (min-width: 768px) {
    #header {
        height: 64px;
    }
    #content {
        margin: 64px auto 0;
    }
    #main > article,
    #main > section,
    #main > aside,
    #main > nav {
        padding: 24px 24px;
    }
    #sidebar > div {
        padding: 24px 24px;
    }
    #footer > div {
        padding: 24px 24px;
    }
}
@media (min-width: 1024px) {
    #content {
        flex-direction: row;
        justify-content: space-between;
        max-width: 1164px;
    }
    #main {
        width: calc(100% - 348px);
        padding: 0 0 0;
    }
    #sidebar {
        width: 348px;
    }
}

.logo {
    padding: 0 12px;
    display: flex;
    align-items: center;
    height: 100%;
}
.logo a {
    /* ロゴ枠を基準幅で持たせる（imgの%幅が効くように） */
    display: block;
    height: 100%;
    width: 200px;
    line-height: 0;
    /* 狭い画面ではロゴ枠自体を縮める */
    max-width: calc(100vw - 84px); /* 60px(menu) + 12px*2(padding想定) */
    flex: 0 1 auto;
    overflow: hidden; /* coverで切り取る */
}
.logo a img {
    display: block;
    /* 枠(120px)に対して100%で表示。縦はヘッダー内で収める */
    width: 100%;
    height: 62px;
    object-fit: cover; /* 余白なしで枠を埋める */
    /* 上が見切れにくいよう、少し上寄せ（%が大きいほど上が切れやすい） */
    object-position: left 40%;
}
.site-title {
    font-size: 18px;
    line-height: 1;
}
@media (min-width: 768px) {
    .logo {
        padding: 0 24px;
    }
    .site-title {
        font-size: 20px;
    }
}

.hamburger-menu {
    width: 60px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.hamburger-menu a {
    color: #fff;
}
.menu-open {
    flex: 0 0 auto;
    display: block;
    height: 40px;
    font-size: 30px;
    line-height: 40px;
}
.menu-open::before {
    content: "\e5d2";
    font-family: Material Icons;
    cursor: pointer;
}
.menu-close {
    position: absolute;
    top: 50%;
    left: -60px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 30px;
    color: #fff;
    z-index: 15;
}
.menu-close::before {
    content: "\e5cd";
    font-family: Material Icons;
    cursor: pointer;
}
.menu {
    position: fixed;
    top: 0;
    right: 0;
}
.menu.showing {
    width: 100%;
    height: 100vh;
    z-index: 12;
}
.menu-container {
    display: none;
    width: 75%;
    max-width: 600px;
    height: 100vh;
    padding: 0;
    background: #f7fafd;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 14;
    position: fixed;
}
.showing .menu-container {
    display: block;
}
.menu-inner {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
}
.showing .menu-inner {
    display: block;
}
.menu-inner .search {
    padding: 50px 16px 24px;
}
.menu-inner .navigation {
    padding: 0 0 80px;
}
.menu-inner .menu-list {
    border-top: solid 1px #aaa;
}
.menu-inner .menu-list li {
    border-bottom: solid 1px #aaa;
}
.menu-inner .menu-list li a {
    display: block;
    padding: 12px 16px;
    color: #333;
}
.menu-inner .menu-list li a:hover {
    background: #f0f0f0;
}
.nav-background {
    display: none;
}
.showing .nav-background {
    display: block;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 13;
}

.search {
    margin-bottom: 16px;
}
.search-form {
    position: relative;
}
.search-form .search-input {
    height: 45px;
    border: solid 1px #ccc;
    padding: 8px 8px 8px 48px;
    box-sizing: border-box;
    font-size: 16px;
    width: 100%;
}
.search-form .search-button {
    height: 40px;
    width: 40px;
    border: none;
    background: #fff;
    color: #aaa;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 3px;
    left: 3px;
}
.search-form .search-button::before {
    content: "\e8b6";
    font-family: Material Icons;
    font-size: 30px;
    line-height: 40px;
}

.breadcrumb {
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    background: #f7fafd;
}
.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    gap: 4px 2px;
    padding: 8px 0;
}
.breadcrumb li::after {
    content: "\e5cc";
    font-family: Material Icons;
    display: inline-block;
    padding-left: 2px;
    vertical-align: middle;
}
.breadcrumb li:last-child::after {
    content: none;
}
.breadcrumb li span {
    color: #888;
}
@media (min-width: 1024px) {
    .breadcrumb {
        border-top: none;
        border-bottom: none;
        background: none;
    }
    .breadcrumb ul {
        padding: 32px 0 8px;
        border-top: solid 1px #ccc;
    }
}

.overview-header {
    margin-bottom: 8px;
}
.overview-header h1 {
    font-size: 15px;
    font-weight: bold;
    color: 333;
}
.overview-content {
    font-size: 12px;
    color: #666;
}
@media (min-width: 1024px) {
    .overview-header h1 {
        font-size: 20px;
    }
}

.article-list-header {
    margin-bottom: 16px;
}
.article-list-header h1,
.article-list-header h2 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin-bottom: 16px;
}
.article-list-count {
    font-size: 12px;
    color: #888;
    text-align: right;
    margin-bottom: 8px;
}
.article-list-sort {
    display: flex;
    gap: 8px;
    font-size: 14px;
}
.article-list-sort li {
    flex: 0 0 auto;
}
.article-list-sort li a {
    display: block;
    background: var(--chipBg);
    padding: 4px 8px;
    border-radius: 4px;
}
.article-list-sort li.active a {
    font-weight: bold;
    color: #fff;
    background: var(--mainColor);
}

.article-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 8px;
    margin-bottom: 16px;
}
.article-list-item {
    width: calc((100% - 16px) / 3);
}
.article-list-item .thumbnail {
    width: 100%;
    aspect-ratio: 182/257;
    background: #ddd;
}
.article-list-item .thumbnail img {
    width: 100%;
    height: auto;
    aspect-ratio: 182/257;
    object-fit: cover;
}
.article-list-item .title a {
    display: block;
    padding: 8px 4px 8px 0;
}
.article-list-item .title span {
    display: block;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: #222;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.3;
    height: 3.8em;
    overflow: hidden;
}
.article-list-item .category a {
    color: #fff;
    background: var(--accentColor);
    padding-left: 5px;
    font-size: 11px;
    line-height: 1.8;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.article-list-item .category a:not(:last-child) {
    display: none;
}
.article-list-item .favorite {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 2px;
}
.article-list-item .favorite.active {
    color: var(--mainColor);
}
.article-list-item .favorite a {
    color: #aaa;
    cursor: pointer;
    font-size: 18px;
}
.article-list-item .favorite .count {
    color: #aaa;
    font-size: 14px;
}

.article-list-item .article-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.article-list-item .views {
    color: #aaa;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}
.article-list-item .article-stats .favorite {
    margin: 0;
}

.article-list-footer {
    padding: 24px 0;
}
.article-list-footer .pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    position: relative;
}
.article-list-footer .pagination a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    box-sizing: border-box;
    background: #fff;
}
.article-list-footer .pagination a:hover {
    border-bottom: solid 1px;
}
.article-list-footer .pagination span {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: var(--subColor);
    font-weight: bold;
}
.article-list-footer .pagination .current {
    color: var(--mainColor);
    font-size: 18px;
}
.article-list-footer .pagination .dots {
    color: #ccc;
}
.article-list-footer .pagination .prev {
    border: solid 1px #ccc;
    border-radius: 4px;
    color: #888;
    font-size: 18px;
    position: absolute;
    left: 0;
}
.article-list-footer .pagination .next {
    border: solid 1px #ccc;
    border-radius: 4px;
    color: #888;
    font-size: 18px;
    position: absolute;
    right: 0;
}
.article-list-footer .pagination .prev::before {
    content: "\e408";
    font-family: Material Icons;
}
.article-list-footer .pagination .next::before {
    content: "\e409";
    font-family: Material Icons;
}
.article-list-footer .show-more a {
    display: block;
    text-align: center;
    background: #fff;
    border: solid 1px #ccc;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    color: #666;
    font-weight: bold;
}
.article-list-footer .show-more a:hover {
    background: #f0f0f0;
    color: #444;
}

.article-list-footer h2 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin-bottom: 16px;
}
.article-list-footer .category-description {
    font-size: 14px;
    margin-top: 24px;
}
.article-list-footer .characters {
    margin-top: 24px;
}

@media (min-width: 768px) {
    .article-list {
        gap: 12px;
    }
    .article-list-item {
        width: calc((100% - 48px) / 5);
    }
    .article-list-footer .pagination .prev {
        margin-right: 0;
    }
    .article-list-footer .pagination .next {
        margin-left: 0;
    }
}

.ranking-header {
    margin-bottom: 16px;
}
.ranking-header h1,
.ranking-header h2 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
}

.ranking-list ol {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 8px;
    margin-bottom: 16px;
    counter-reset: item;
}
.ranking-list ol li {
    position: relative;
}
.ranking-list ol li::before {
    counter-increment: item;
    content: counter(item);
    font-size: 13px;
    color: #fff;
    background: var(--mainColor);
    display: block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}
.ranking-list .thumbnail {
    position: relative;
}
.ranking-list-footer {
    padding: 24px 0;
}
.ranking-list-footer .show-more a {
    display: block;
    text-align: center;
    background: #fff;
    border: solid 1px #ccc;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    color: #666;
    font-weight: bold;
}
.ranking-list-footer .show-more a:hover {
    background: #f0f0f0;
    color: #444;
}

@media (min-width: 768px) {
    .ranking-list ol {
        gap: 12px;
    }
}

.article-header {
    margin-bottom: 16px;
}

.page-title {
    margin-bottom: 16px;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.4;
}
.book-overview {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 16px;
}
.book-cover {
    width: 45%;
}
.book-cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 182/257;
    object-fit: cover;
    background: #fafafa;
}

.book-metadata {
    width: calc(55% - 16px);
    font-size: 12px;
}
.book-metadata dl > div {
    display: flex;
    margin-bottom: 1em;
    gap: 4px;
}
.book-metadata dt {
    width: 30%;
}
.book-metadata dt::after {
    content: " :";
}
.book-metadata dd {
    width: 70%;
}
.book-metadata dd a {
    display: inline-block;
    text-decoration: underline;
    margin-right: 8px;
}

.favorite-button {
    display: flex;
    align-items: center;
    gap: 4px;
}
.favorite-button a {
    font-size: 24px;
    cursor: pointer;
}
.favorite-button .count {
    color: #888;
    font-size: 16px;
    font-weight: bold;
}

.book-stats {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}
.book-stats .views {
    margin-left: auto;
    color: #888;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .book-overview {
        gap: 16px 24px;
    }
    .book-metadata {
        width: calc(55% - 24px);
        font-size: 15px;
        border: solid 1px #ccc;
        border-radius: 8px;
        box-sizing: border-box;
        padding: 24px 16px;
    }
    .book-stats {
        flex: 0 0 100%;
        width: 100%;
    }
}

.gallery {
    margin-right: -12px;
    margin-left: -12px;
    background: #444;
    overflow: hidden;
}
.image-list img {
    width: 100%;
    height: auto;
    aspect-ratio: 182/257;
    object-fit: contain;
    background: #fafafa;
}
.image-number {
    padding: 0 12px 16px;
    font-size: 12px;
    color: #ddd;
}
@media (min-width: 768px) {
    .gallery {
        margin-right: 0;
        margin-left: 0;
        background: none;
    }
    .image-number {
        padding: 0 0 16px;
        font-size: 12px;
        color: #aaa;
    }
}

.content {
    color: #666;
    font-size: 15px;
}
.content h2 {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 16px;
}
.content > p {
    margin-bottom: 1.8em;
}

.article-footer {
    padding: 24px 0;
    margin-right: -12px;
    margin-left: -12px;
    background: #444;
}
.article-footer .hashtag {
    padding: 0 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.article-footer .hashtag a {
    font-size: 12px;
    display: block;
    background: #eee;
    color: #444;
    line-height: 20px;
    padding: 0 8px;
    border-radius: 10px;
}
.article-footer .hashtag a::before {
    content: "#";
}
@media (min-width: 768px) {
    .article-footer {
        padding: 24px 0;
        margin-right: 0;
        margin-left: 0;
        background: #f0f0f0;
    }
    .article-footer .hashtag {
        padding: 0 16px;
    }
    .article-footer .hashtag a {
        background: #666;
        color: #fafafa;
        line-height: 24px;
        padding: 0 8px;
        border-radius: 12px;
    }
}

.recommend h3 {
    margin-bottom: 12px;
    padding-bottom: 4px;
    font-size: 16px;
    font-weight: bold;
    border-bottom: solid 2px var(--accentColor);
}
.recommend-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    overflow-x: scroll;
}
.recommend-list-item {
    width: calc((100% - 16px) / 3);
    flex-shrink: 0;
}
.recommend-list-item .thumbnail {
    width: 100%;
    aspect-ratio: 182/257;
    background: #ddd;
}
.recommend-list-item .thumbnail img {
    width: 100%;
    height: auto;
    aspect-ratio: 182/257;
    object-fit: cover;
}
.recommend-list-item .title a {
    display: block;
    padding: 8px 4px 8px 0;
}
.recommend-list-item .title span {
    display: block;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: #222;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.3;
    height: 3.8em;
    overflow: hidden;
}
@media (min-width: 768px) {
    .recommend-list {
        gap: 12px;
    }
    .recommend-list-item {
        width: calc((100% - 48px) / 5);
    }
}

.term-search-form {
    position: relative;
}
.term-search-input {
    height: 40px;
    border: solid 1px #ccc;
    padding-left: 40px;
    box-sizing: border-box;
    font-size: 16px;
    width: 100%;
    background: #fafafa;
    border-radius: 20px;
}
.term-search-form::before {
    content: "\e8b6";
    font-family: Material Icons;
    font-size: 28px;
    line-height: 40px;
    display: block;
    position: absolute;
    left: 9px;
}

.term-search-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.term-search-list li {
    flex: 1 1 auto;
}
.term-search-list li a {
    display: block;
    padding: 4px;
    color: #666;
    border: solid 1px #ccc;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
}
.term-search-list li a:hover {
    color: #444;
    background: #f8f8f8;
}

.ranking-select-tabs {
    display: flex;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 12px;
}
.ranking-select-tabs li {
    flex: 0 0 auto;
}
.ranking-select-tabs li a {
    display: block;
    background: var(--chipBg);
    padding: 4px 8px;
    border-radius: 4px;
}
.ranking-select-tabs li.active a {
    font-weight: bold;
    color: #fff;
    background: var(--mainColor);
}

.sidebar-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.4;
}
.sidebar-content .more {
    margin-top: 16px;
    text-align: right;
    padding-right: 4px;
}
.sidebar-content .more a {
    font-weight: bold;
    font-size: 15px;
    color: #666;
}
.sidebar-content .more a::before {
    content: "\eac9";
    font-family: Material Icons;
    vertical-align: top;
    line-height: 1.5;
}

.sidebar-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.sidebar-list li {
    flex: 1 1 auto;
}
.sidebar-list li a {
    display: block;
    padding: 4px;
    color: #666;
    border: solid 1px #ccc;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
}
.sidebar-list li a:hover {
    color: #444;
    background: #f8f8f8;
}

.recommend-site-list li {
    padding: 8px 0;
}
.recommend-site-list li a {
    color: #666;
    font-size: 13px;
}

.footer-navigation {
    margin-bottom: 50px;
}
.footer-navigation li {
    padding: 8px 0;
}
.footer-navigation li a {
    font-size: 15px;
    color: #444;
}
.copyright {
    font-size: 11px;
    color: #666;
}

.return-to-top {
    position: fixed;
    bottom: 50px;
    left: 16px;
    transition: all 0.5s ease;
}
.return-to-top a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
    color: #666;
    box-shadow: 0 2px 8px #ccc;
}
.return-to-top a::before {
    content: "\e5d8";
    font-family: Material Icons;
    font-size: 32px;
    line-height: 50px;
}
@media (min-width: 1024px) {
    .return-to-top {
        bottom: 50px;
        left: 24px;
    }
}

@media (max-width: 767px) {
    .ads {
        padding-bottom: 16px;
    }
}

.ad-url {
    width: 50%;
    margin: 60px auto;
}

.link-button {
    display: block;
    padding: 20px;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    background: var(--mainColor);
    position: relative;
}
.link-button:hover {
    background: var(--mainColorHover);
}

.link-button:hover {
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.read-button a {
    display: block;
    font-size: 12px;
    color: #000;
    text-align: center;
    border: 1px solid #ccc;
    margin-top: 5px;
    padding: 2px 0;
}

@media (max-width: 767px) {
    .ad-url {
        width: 70%;
    }
}

/*-- plugin styles --*/
.favorites-list li {
    border-top: none !important;
    padding: 0 0 !important;
}
.simplefavorites-clear {
    padding: 4px 8px;
    border: solid 1px #ccc;
    background: #f0f0f0;
}

.wpcf7-form {
    max-width: 480px;
}
.wpcf7-form > p {
    margin-bottom: 16px;
}
.wpcf7-form input {
    padding: 8px;
    border: solid 1px #ccc;
    display: block;
    width: 100%;
    line-height: 1.8;
    box-sizing: border-box;
}
.wpcf7-form textarea {
    padding: 8px;
    border: solid 1px #ccc;
    display: block;
    width: 100%;
    line-height: 1.8;
    box-sizing: border-box;
}
.wpcf7-submit {
    margin-top: 16px;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0 0 0 !important;
}

/* slick (トップのバナー) */
.banner-list .slick-slide {
    margin: 0 10px;
    transition: transform 0.5s ease;
}
.banner-list .slick-slide img {
    width: 100%;
    height: auto;
}

/* 横長バナー表示（TOPスライダー） */
#banner .banner-list .item a {
    display: block;
}
#banner .banner-list .item img {
    width: 100%;
    height: auto;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    border-radius: 12px;
}
