.person-grid {
display: flex;
flex-wrap: wrap;
gap: 30px;
}
.person-card {
border: 1px solid #eee;
border-radius: 10px;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
text-align: center;
background: #fff;
}
.person-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.person-image img {
width: 100%;
border-bottom: 1px solid #eee;
}
.person-name {
font-size: 18px;
margin: 10px 0 5px;
}
.person-role {
font-size: 14px;
color: #777;
}
.az-sidebar {
position: fixed;
top: 200px;
right: 20px;
display: flex;
flex-direction: row;
gap: 15px;
z-index: 10;
}
.az-sidebar .az-column {
display: flex;
flex-direction: column;
gap: 5px;
}
.az-sidebar a {
color: #435ebe;
font-weight: bold;
text-decoration: none;
}
.az-sidebar a:hover {
text-decoration: underline;
} @media (max-width: 991px) {
.az-sidebar {
display: none !important;
}
.header-logo img {
height: 50px;
}
} :root {
--primary: #429488;
--primary-light: #5bb3a6;
--primary-shadow: rgba(66, 148, 136, 0.25);
} .show-overview,
.show-cast,
.show-news,
.show-placements {
margin-top: 2rem;
margin-bottom: 3rem;
background: #fff;
border-radius: 0.75rem;
padding: 2rem;
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
} .show-overview {
line-height: 1.8;
color: #333;
font-size: 1.05rem;
}
.show-overview p {
margin-bottom: 1.2rem;
} .show-cast .show-title,
.show-news .show-title,
.show-placements .show-title {
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 1.6rem;
color: var(--primary);
margin-bottom: 1.5rem;
border-bottom: 2px solid var(--primary);
display: inline-block;
padding-bottom: 0.3rem;
} .news-card {
margin-bottom: 1.5rem;
} .show-placements table {
width: 100%;
border-collapse: collapse;
border: 1px solid #e5e5e5;
}
.show-placements th,
.show-placements td {
padding: 0.9rem 1rem;
text-align: left;
border-bottom: 1px solid #f0f0f0;
line-height: 1.6;
}
.show-placements th {
background: var(--primary);
color: #fff;
font-weight: 600;
}
.show-placements tr:hover td {
background: #f3f9f8;
} .show-subnav {
display: flex;
justify-content: center;
gap: 0.5rem;
margin-bottom: 2rem;
flex-wrap: wrap;
}
.show-subnav .nav-link {
border: 1px solid var(--primary);
border-radius: 999px;
color: var(--primary);
font-weight: 600;
padding: 0.5rem 1rem;
transition: all 0.3s ease;
text-decoration: none;
background-color: #fff;
}
.show-subnav .nav-link:hover,
.show-subnav .nav-link.active {
background-color: var(--primary);
color: #fff;
box-shadow: 0 2px 8px var(--primary-shadow);
} @media (max-width: 768px) {
.show-overview,
.show-cast,
.show-news,
.show-placements {
padding: 1.5rem;
}
.show-subnav {
gap: 0.4rem;
}
.show-subnav .nav-link {
font-size: 0.95rem;
padding: 0.4rem 0.9rem;
}
} .show-overview {
background: #fff;
border-radius: 0.75rem;
padding: 2.5rem 3rem;
margin-top: 2rem;
margin-bottom: 3rem;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
line-height: 1.9;
font-size: 1.1rem;
color: #2b2b2b;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}
.show-overview p {
margin-bottom: 1.6rem;
}
.show-overview h2,
.show-overview h3 {
color: #429488;
margin-top: 1.8rem;
margin-bottom: 0.8rem;
font-weight: 700;
}
.show-overview ul,
.show-overview ol {
margin-left: 1.5rem;
margin-bottom: 1.6rem;
}
.show-overview li {
margin-bottom: 0.4rem;
line-height: 1.8;
} .show-overview::before {
content: "";
display: block;
width: 60px;
height: 4px;
background: #429488;
border-radius: 2px;
margin-bottom: 1.5rem;
margin-left: auto;
margin-right: auto;
} @media (max-width: 768px) {
.show-overview {
padding: 1.8rem 1.5rem;
font-size: 1rem;
line-height: 1.8;
}
.show-overview::before {
width: 45px;
margin-bottom: 1rem;
}
} .show-placements {
background: #fff;
border-radius: 0.75rem;
padding: 2rem;
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.ranking-title {
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-size: 1.3rem;
color: #429488;
margin-bottom: 1rem;
border-left: 4px solid #429488;
padding-left: 0.75rem;
}
.ranking-table {
width: 100%;
border-collapse: collapse;
margin-bottom: 2rem;
background: #fff;
border-radius: 0.5rem;
overflow: hidden;
box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.ranking-table th,
.ranking-table td {
padding: 0.9rem 1rem;
text-align: left;
border-bottom: 1px solid #f0f0f0;
line-height: 1.6;
}
.ranking-table th {
background: #429488;
color: #fff;
font-weight: 600;
}
.ranking-table tr:hover td {
background: #f3f9f8;
}
.ranking-link {
color: #333;
font-weight: 500;
text-decoration: none;
transition: color 0.2s ease;
}
.ranking-link:hover {
color: #429488;
}
.show-cast {
--gap: 1.25rem;
}
.person-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: var(--gap);
}
.person-card {
border: 1px solid #ddd;
border-radius: 0.75rem;
overflow: hidden;
background: #fff;
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.person-card:hover {
transform: translateY(-3px);
box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.person-image-wrapper {
width: 100%;
aspect-ratio: 3 / 4;
overflow: hidden;
background: #f8f8f8;
display: flex;
align-items: center;
justify-content: center;
}
.person-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.person-card:hover .person-image {
transform: scale(1.05);
}
.person-name {
display: block;
text-align: center;
font-weight: 600;
font-size: 0.95rem;
color: #222;
padding: 0.75rem;
background: #fff;
border-top: 1px solid #eee;
min-height: 2.5rem;
}
@media (min-width: 992px) {
.person-grid {
gap: 1.5rem;
}
} .show-stream {
margin: 3rem auto;
max-width: 900px;
text-align: center;
} .stream-button {
display: inline-block;
width: 100%;
background: linear-gradient(135deg, #ff5a3c 0%, #ff2f5b 100%);
color: #fff;
text-transform: uppercase;
font-family: 'Poppins', sans-serif;
font-weight: 800;
font-size: 1.4rem;
letter-spacing: 0.5px;
text-align: center;
padding: 1.2rem 2rem;
border-radius: 1rem;
text-decoration: none;
box-shadow: 0 8px 25px rgba(255, 60, 60, 0.4);
transition: all 0.25s ease;
position: relative;
overflow: hidden;
}
.stream-button:hover {
background: linear-gradient(135deg, #ff2f5b 0%, #c81a1a 100%);
transform: translateY(-3px);
box-shadow: 0 10px 28px rgba(255, 60, 60, 0.55);
}
.stream-button:active {
transform: translateY(0);
box-shadow: 0 5px 12px rgba(255, 60, 60, 0.4);
} .stream-button::after {
content: "";
position: absolute;
top: 0;
left: -75%;
width: 50%;
height: 100%;
background: rgba(255, 255, 255, 0.25);
transform: skewX(-20deg);
transition: left 0.5s ease;
}
.stream-button:hover::after {
left: 130%;
} .stream-subtext {
display: block;
font-size: 0.85rem;
font-weight: 400;
opacity: 0.9;
margin-top: 0.4rem;
text-transform: none;
} .show-stream {
background: #fdf7f6;
border-radius: 1rem;
padding: 2.5rem 1.5rem;
} @media (max-width: 768px) {
.stream-button {
font-size: 1.15rem;
padding: 1rem 1.2rem;
border-radius: 0.75rem;
}
.stream-subtext {
font-size: 0.8rem;
}
} .partner-shops-section {
background: #f9fbfa;
}
.page-title {
font-family: 'Poppins', sans-serif;
font-weight: 700;
color: #429488;
}
.page-intro {
max-width: 700px;
margin: 0 auto;
font-size: 1.1rem;
color: #444;
line-height: 1.8;
}
.shop-card {
transition: all 0.25s ease;
border: 1px solid #e8e8e8;
}
.shop-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.shop-logo img {
max-height: 90px;
object-fit: contain;
filter: grayscale(20%);
transition: filter 0.3s ease;
}
.shop-card:hover .shop-logo img {
filter: grayscale(0%);
}
.shop-title {
font-weight: 600;
color: #333;
margin-bottom: 1rem;
}
.shop-btn {
display: inline-block;
background-color: var(--btn-color, #429488);
color: #fff;
font-weight: 600;
text-transform: uppercase;
padding: 0.6rem 1.2rem;
border-radius: 0.5rem;
text-decoration: none;
transition: all 0.25s ease;
box-shadow: 0 3px 8px rgba(66, 148, 136, 0.25);
}
.shop-btn:hover {
background-color: #2f6d63;
box-shadow: 0 5px 12px rgba(66, 148, 136, 0.35);
transform: translateY(-2px);
}
@media (max-width: 768px) {
.page-title {
font-size: 1.6rem;
}
.shop-logo img {
max-height: 70px;
}
} .person-overview {
background: #fff;
border-radius: 0.75rem;
padding: 2rem 1.5rem;
margin-top: 1.5rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.person-section-title {
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 1.5rem;
color: #429488;
border-bottom: 2px solid #429488;
display: inline-block;
padding-bottom: 0.25rem;
margin-bottom: 1.5rem;
}
.person-meta {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 0.75rem 1rem;
}
.person-meta .meta-item {
display: contents;
}
.person-meta dt {
font-weight: 600;
color: #333;
}
.person-meta dd {
margin: 0;
color: #444;
line-height: 1.6;
}
.person-meta a.link {
color: #429488;
text-decoration: none;
font-weight: 500;
}
.person-meta a.link:hover {
text-decoration: underline;
} @media (max-width: 768px) {
.person-meta {
grid-template-columns: 1fr;
}
.person-section-title {
font-size: 1.25rem;
}
}
.badge-primary {
background-color: transparent !important;
color: #435ebe !important;
border: 1px solid #435ebe;
border-radius: 6px;
padding: 3px 8px;
font-weight: 500;
transition: all 0.2s ease;
}
.badge-primary:hover {
background-color: #435ebe !important;
color: #fff !important;
} :root{
--rsw-max: 72ch; --rsw-lh: 1.7; --rsw-space: clamp(0.9rem, 1.2vw, 1.4rem); --rsw-space-lg: clamp(1.4rem, 2vw, 2.2rem);
} .single-post .site-content,
.single-post .content-area,
.single-post .entry-content{
max-width: var(--rsw-max);
margin-left: auto !important;
margin-right: auto !important;
padding-left: 1rem;
padding-right: 1rem;
} .single-post .entry-content{
font-size: clamp(1rem, 0.95rem + 0.35vw, 1.125rem);
line-height: var(--rsw-lh);
letter-spacing: 0.01em;
color: #111;
} .single-post .entry-content > p,
.single-post .entry-content > ul,
.single-post .entry-content > ol,
.single-post .entry-content > blockquote,
.single-post .entry-content > figure{
margin-block: var(--rsw-space);
} .single-post .entry-content h2{
font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2rem);
margin-top: var(--rsw-space-lg);
margin-bottom: 0.5rem;
line-height: 1.25;
}
.single-post .entry-content h3{
font-size: clamp(1.25rem, 1.05rem + 0.7vw, 1.6rem);
margin-top: var(--rsw-space);
margin-bottom: 0.4rem;
line-height: 1.3;
}
.single-post .entry-content h4{
margin-top: calc(var(--rsw-space) * 0.8);
margin-bottom: 0.3rem;
} .single-post .entry-content ul,
.single-post .entry-content ol{
padding-left: 1.25rem;
}
.single-post .entry-content li + li{
margin-top: 0.35rem;
} .single-post .entry-content img{
max-width: 100%;
height: auto;
display: block;
border-radius: 10px;
}
.single-post .wp-caption{
margin: var(--rsw-space) auto;
}
.single-post .wp-caption-text{
font-size: 0.95em;
opacity: 0.85;
margin-top: 0.4rem;
text-align: center;
} .single-post .entry-content blockquote{
border-left: 4px solid #e5e5e5;
padding: 0.75rem 1rem;
background: #fafafa;
border-radius: 8px;
} .single-post .entry-content a{
text-decoration: underline;
text-underline-offset: 2px;
} @media (min-width: 1200px){
:root{ --rsw-max: 78ch; } }
.elementor-kit-5564 p {
margin-block-end: auto;
padding-bottom: 20px !important;
}
.blog-content p,
.show-overview p,
.elementor-widget-text-editor p {
font-size: 18px;
line-height: 22px;
padding-bottom: 20px !important;
margin-block-end: auto;
}
.show-overview {
margin-top: 2rem;
background: #fff;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
padding: 2rem;
font-family: "Inter", sans-serif;
color: #222;
line-height: 1.5;
}
.show-content {
margin-bottom: 2rem;
}
.show-info-box {
border: 1px solid #e6e8ef;
border-radius: 10px;
overflow: hidden;
background: #fafbff;
}
.show-info-table {
width: 100%;
border-collapse: collapse;
font-size: 0.95rem;
}
.show-info-table th,
.show-info-table td {
padding: 0.8rem 1rem;
vertical-align: top;
}
.show-info-table th {
width: 35%;
background-color: #f3f5fc;
font-weight: 600;
color: #429488; border-right: 1px solid #e6e8ef;
}
.show-info-table td {
color: #333;
}
.show-info-table tr:nth-child(even) td,
.show-info-table tr:nth-child(even) th {
background-color: #f9faff;
}
.show-info-table tr:hover td,
.show-info-table tr:hover th {
background-color: #eef2ff;
}
.external-link {
color: #429488;
font-weight: 500;
text-decoration: none;
}
.external-link:hover {
text-decoration: underline;
} .episodes-container {
transition: max-height 0.3s ease;
}
.episodes-container.collapsed {
max-height: 4.5rem;
overflow: hidden;
}
.episode-item {
margin-bottom: 0.3rem;
} .toggle-episodes {
background: none;
border: none;
cursor: pointer;
margin-left: 8px;
width: 18px;
height: 18px;
position: relative;
}
.toggle-episodes::before,
.toggle-episodes::after {
content: '';
position: absolute;
background: #429488;
transition: transform 0.3s ease;
}
.toggle-episodes::before {
top: 8px;
left: 0;
width: 100%;
height: 2px;
}
.toggle-episodes::after {
left: 8px;
top: 0;
width: 2px;
height: 100%;
}
.toggle-episodes[aria-expanded="true"]::after {
transform: rotate(90deg);
} @media (max-width: 768px) {
.show-info-table th,
.show-info-table td {
display: block;
width: 100%;
}
.show-info-table th {
border-right: none;
border-bottom: 1px solid #e6e8ef;
}
.show-info-table tr {
border-bottom: 1px solid #e6e8ef;
margin-bottom: 1rem;
display: block;
}
} #wpdcom {
width: 100%;
max-width: 100%;
} .chat-page {
max-width: 800px;
margin: 0 auto;
}
.chat-container {
background: #fff;
border-radius: 12px;
box-shadow: 0 0 12px rgba(0,0,0,0.05);
padding: 1rem;
} @media (max-width: 768px) {
.chat-page header.page-header {
display: none; }
.chat-container {
padding: 0;
border-radius: 0;
box-shadow: none;
}
#wpdcom {
height: 100vh;
overflow-y: auto;
padding-bottom: 80px;
}
.wpd-form {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background: #fff;
border-top: 1px solid #ddd;
z-index: 10;
}
} @media (max-width: 768px) {
#wpdcom .wpd-form {
position: static !important;
bottom: auto !important;
}
#wpdcom {
padding-bottom: 0 !important;
}
}
.badge-primary {
position: unset;
}  .alphabet-header-wrapper {
display: block;
width: 100%;
clear: both;
margin-top: 35px;
margin-bottom: 10px;
} .alphabet-header {
font-size: 28px;
font-weight: 800;
color: #429488; border-bottom: 2px solid #429488;
margin: 0;
padding-bottom: 4px;
line-height: 1.2;
} .alphabet-break {
display: block;
flex-basis: 100%;
width: 100%;
height: 0;
clear: both;
margin-bottom: 10px;
} .dpt-wrapper {
flex-wrap: wrap;
} .display-post-types .alphabet-header-wrapper:first-of-type {
margin-top: 15px;
} .stars-filter-form {
display: flex;
flex-wrap: wrap;
align-items: flex-end;
gap: 16px;
margin-bottom: 25px;
} .stars-filter-form .filter-group {
display: flex;
flex-direction: column;
position: relative;
background: #fff;
border: 1px solid #ddd;
border-radius: 10px;
padding: 10px 14px;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
transition: all 0.2s ease-in-out;
min-width: 180px;
}
.stars-filter-form .filter-group:hover {
border-color: #429488;
box-shadow: 0 2px 6px rgba(67, 94, 190, 0.2);
} .stars-filter-form label {
font-weight: 600;
font-size: 13px;
color: #429488;
margin-bottom: 6px;
letter-spacing: 0.3px;
} .stars-filter-form select {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
border: 1px solid #ccc;
border-radius: 6px;
padding: 8px 32px 8px 10px;
font-size: 15px;
line-height: 1.4;
background-color: #f9f9fb;
color: #333;
cursor: pointer;
transition: border 0.2s ease, box-shadow 0.2s ease;
} .stars-filter-form .filter-group::after {
content: "▾";
position: absolute;
right: 18px;
bottom: 14px;
color: #666;
pointer-events: none;
font-size: 13px;
} .stars-filter-form select:hover,
.stars-filter-form select:focus {
border-color: #429488;
box-shadow: 0 0 0 3px rgba(67, 94, 190, 0.15);
outline: none;
} .stars-filter-form .filter-reset {
background-color: #429488;
color: #fff !important;
padding: 8px 14px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
transition: background 0.2s ease;
}
.stars-filter-form .filter-reset:hover {
background-color: #429488;
text-decoration: none;
} @media (max-width: 700px) {
.stars-filter-form {
flex-direction: column;
align-items: stretch;
}
.stars-filter-form .filter-group {
width: 100%;
}
.stars-filter-form .filter-reset {
align-self: flex-end;
}
}