﻿.wd-browsing-breadcrumbs {
    display: none !important;
}
section.rc-guide-section.rc-guide-intro {
    margin-top: 100px;
}
.rc-section {
    padding: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.rc-container, .rc-container-fluid {
    width: 100%;
    margin: 0 auto;
}

/* --- MOSAIC --- */
.rc-mosaic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 0;
}

.rc-mosaic-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px; 
}

.rc-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.rc-mosaic-item:hover .rc-image-wrapper img {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .rc-mosaic-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
        height: auto;
        aspect-ratio: 2/1;
    }
    .rc-mosaic-item { height: auto; }
    .item-large-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
    .item-small-1 { grid-column: 1 / 2; grid-row: 3; }
    .item-small-2 { grid-column: 2 / 3; grid-row: 3; }
    .item-small-3 { grid-column: 3 / 4; grid-row: 1; }
    .item-small-4 { grid-column: 4 / 5; grid-row: 1; }
    .item-large-2 { grid-column: 3 / 5; grid-row: 2 / 4; }
}

/* --- ATHLETES ACCORDION --- */
.rc-athletes-section {
    background-color: #fff;
    position: relative;
    padding-bottom: 50px;
    overflow: hidden;
}

.rc-vertical-bg-text {
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 60px;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    text-transform: uppercase;
}

.rc-accordion-item {
    border-top: 1px solid #e5e5e5;
    background-color: #fff;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 1;
}

.rc-accordion-item.active,
.rc-accordion-item:hover {
    background-color: #162b64;
    border-top-color: transparent;
}

.rc-accordion-header {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.rc-toggle-btn {
    background: none;
    border: none;
    font-size: 30px;
    margin-right: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #0000007d;
}

.rc-accordion-item.active .rc-toggle-btn {
    color: #fff;
}

.icon-minus { display: none; }
.rc-accordion-item.active .icon-plus { display: none; }
.rc-accordion-item.active .icon-minus { display: block; font-size: 40px !important; }

.rc-athlete-name {
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    color: #000;
    font-size: 32px;
    letter-spacing: -1px;
    font-family: Helvetica Now Pro Text, sans-serif;
}

.rc-accordion-item.active .rc-athlete-name,
.rc-accordion-item:hover .rc-athlete-name {
    color: #fff;
}

.rc-accordion-content {
    display: none;
    padding: 0 20px 30px 20px;
}

.rc-content-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.rc-athlete-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.rc-athlete-info h4 {
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 22px;
    font-family: Helvetica Now Pro Text, sans-serif;
}

.rc-athlete-bio p {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.rc-btn-outline {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s;
}

.rc-btn-outline:hover {
    background-color: #fff;
    color: #162b64;
}

@media (min-width: 900px) {
    .rc-vertical-bg-text { font-size: 120px; }
    .rc-accordion-header { padding: 30px 40px; }
    .rc-athlete-name { font-size: 64px; letter-spacing: -2.56px; }
    .rc-content-inner { flex-direction: row; gap: 200px; }
    .rc-athlete-media { width: 50%; height: 500px; }
    .rc-athlete-info { width: 50%; }
    .rc-athlete-info h4 { font-size: 26px; }
    .rc-accordion-content { padding: 0 40px 40px 40px; }
}

/* --- BLOG SECTION --- */
.rc-blog-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Helvetica Now Pro Text, sans-serif;
}

.rc-blog-wrapper {
    width: 100%;
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.rc-blog-wrapper .header-blog {
    display: flex;
    justify-content: space-between;
    padding-right: 20px;
    padding-left: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.rc-blog-wrapper .header-blog a {
    background-color: black;
    color: white;
    height: 44px;
    padding: 0 24px;
    font-size: 14px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.rc-blog-grid {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.rc-blog-grid::-webkit-scrollbar { display: none; }

.rc-blog-card {
    position: relative;
    flex: 0 0 85%;
    height: 400px;
    scroll-snap-align: start;
    overflow: hidden;
    background-color: #000;
}

.rc-blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rc-blog-card:hover img { transform: scale(1.05); }

.rc-blog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.rc-blog-content { color: #fff; max-width: 80%; }
.rc-blog-date { font-size: 11px; margin-bottom: 5px; opacity: 0.9; }
.rc-blog-title { font-size: 20px; font-weight: 700; line-height: 1.1; text-transform: uppercase; }

.rc-blog-arrow {
    background-color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-blog-arrow svg { width: 14px; height: 14px; fill: #000; }

@media (min-width: 768px) {
    .rc-blog-wrapper .header-blog { padding-right: 30px; padding-left: 0; }
    .rc-blog-grid { display: grid; grid-template-columns: repeat(12, 1fr); overflow-x: visible; }
    .rc-card-large { grid-column: span 6; }
    .rc-card-small { grid-column: span 3; }
    .rc-blog-card { height: 500px; flex: none; }
    .rc-blog-title { font-size: 24px; }
    .rc-blog-arrow { width: 40px; height: 40px; }
}

/* --- TITLES & GUIDES --- */
.rc-blog-wrapper .rc-guide-section-header { padding-inline: 20px; margin: 40px 0; }
.rc-guide-section-header__title { font-size: 28px; margin-bottom: 10px; font-weight: bold; letter-spacing: -1.14px; }
h1.rc-guide-section-header__title { font-size: 32px; text-align: center; }

.rc-guide-section p { font-size: 14px; line-height: 1.5; margin-bottom: 20px; }

.rc-guide-section.rc-guide-intro p {
    font-size: 14px;
    max-width: 90%;
    text-align: center;
    margin: 0 auto 40px auto;
}

@media (min-width: 768px) {
    .rc-blog-wrapper .rc-guide-section-header { padding-inline: 40px; margin: 60px 0 40px 0; }
    .rc-guide-section-header__title { font-size: 38px; }
    h1.rc-guide-section-header__title { font-size: 50px; }
    .rc-guide-section.rc-guide-intro p { max-width: 42%; margin-bottom: 60px; }
}

/* --- DECORATIVE --- */
.boardshort-guide-container::before {
    content: "ATLETAS RIP CURL ATLETAS RIP CURL ATLETAS RIP CURL ATLETAS RIP CURL ATLETAS RIP CURL";
    position: absolute;
    left: 50%;
    top: 0;
    height: 200vh;
    transform: translateX(-50%) rotate(90deg);
    font-family: Helvetica Now Pro Text, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: .825;
    z-index: 10;
    display: flex;
    align-items: center;
    white-space: nowrap;
    color: #ffffff0d;
    pointer-events: none;
    font-size: 4.5rem;
    letter-spacing: -1.44px;
}

@media (min-width: 768px) {
    .boardshort-guide-container::before { font-size: 8.75rem; letter-spacing: -5.6px; }
}

section.rc-section.rc-mosaic-section { z-index: 100; position: relative; }