/* Support Hub Styles - Airbnb Inspired */
.pb-support-page {
    font-family: Circular, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    color: #222222;
    background-color: #ffffff;
    line-height: 1.43;
}

/* Hero Section */
.pb-support-hero {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 64px 24px;
    background-color: #f7f7f7;
    text-align: center;
    border-bottom: 1px solid #ebebeb;
}

.pb-support-hero h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.pb-support-hero p {
    font-size: 18px;
    color: #717171;
    margin-bottom: 32px;
}

/* Search Wrapper */
.pb-support-search-wrapper {
    max-width: 1280px; margin: 0 auto;
    display: flex;
    justify-content: center;
}

.pb-support-search {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 40px;
    padding: 12px 24px;
    box-shadow: rgba(0, 0, 0, 0.02) 0 0 0 1px, rgba(0, 0, 0, 0.04) 0 2px 6px 0, rgba(0, 0, 0, 0.1) 0 4px 8px 0;
    transition: box-shadow 0.2s ease;
}

.pb-support-search:focus-within {
    box-shadow: rgba(0, 0, 0, 0.02) 0 0 0 1px, rgba(0, 0, 0, 0.04) 0 2px 6px 0, rgba(0, 0, 0, 0.1) 0 4px 8px 0;
}

.pb-support-search input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    padding: 8px 0;
}

.pb-support-search-icon {
    margin-right: 12px;
    color: #717171;
}

/* Layout */
.pb-support-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px;
    display: flex;
    gap: 48px;
    flex-direction: column;
}

@media (min-width: 768px) {
    .pb-support-layout {
        flex-direction: row;
    }
}

/* Main Grid (Index) */
.pb-support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
}

@media (min-width: 768px) {
    .pb-support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pb-support-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Cards */
.pb-support-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    background-color: #ffffff;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pb-support-card:hover {
    box-shadow: rgba(0, 0, 0, 0.02) 0 0 0 1px, rgba(0, 0, 0, 0.04) 0 2px 6px 0, rgba(0, 0, 0, 0.1) 0 4px 8px 0;
}

.pb-support-card-icon {
    font-size: 32px;
    color: #FF5A5F; /* Rausch */
    margin-bottom: 16px;
}

.pb-support-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pb-support-card-desc {
    font-size: 14px;
    color: #717171;
    line-height: 1.5;
}

/* Sidebar */
.pb-support-side {
    flex-shrink: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .pb-support-side {
        width: 250px;
        position: sticky;
        top: 24px;
        align-self: flex-start;
    }
}

.pb-support-side h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: #717171;
    letter-spacing: 0.04em;
}

.pb-support-side nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pb-support-side nav a {
    color: #222222;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.pb-support-side nav a:hover {
    background-color: #f7f7f7;
}

.pb-support-side nav a.active {
    font-weight: 600;
    background-color: #f7f7f7;
}

/* Main Content Area */
.pb-support-main {
    flex-grow: 1;
    min-width: 0;
}

.pb-support-main h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #ebebeb;
}

.pb-support-main h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
}

/* Sub-cards within articles */
.pb-support-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .pb-support-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pb-support-cards article {
    background: #f7f7f7;
    padding: 24px;
    border-radius: 12px;
}

.pb-support-cards article h3 {
    margin-top: 0;
    font-size: 18px;
}

/* Guides */
.pb-step-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.pb-step-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 16px;
}

.pb-step-list li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #222222;
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    margin-right: 12px;
    flex-shrink: 0;
}

/* FAQ Accordion */
.pb-accordion {
    margin-bottom: 16px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 16px;
}

.pb-accordion summary {
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 24px;
    outline: none;
}

.pb-accordion summary::-webkit-details-marker {
    display: none;
}

.pb-accordion summary .icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
}

.pb-accordion summary .icon::before,
.pb-accordion summary .icon::after {
    content: '';
    position: absolute;
    background-color: #222222;
    transition: transform 0.2s ease;
}

.pb-accordion summary .icon::before {
    top: 5px;
    left: 0;
    width: 12px;
    height: 2px;
}

.pb-accordion summary .icon::after {
    top: 0;
    left: 5px;
    width: 2px;
    height: 12px;
}

.pb-accordion[open] summary .icon::after {
    transform: rotate(90deg);
}

.pb-accordion-content {
    margin-top: 12px;
    font-size: 16px;
    color: #717171;
    line-height: 1.5;
}

/* Tips */
.pb-inline-tip {
    display: flex;
    padding: 16px;
    border-radius: 8px;
    margin-top: 32px;
}

.pb-inline-tip.pro_tip {
    background-color: #f0f7ff;
    border: 1px solid #cce3ff;
}

.pb-inline-tip.actionable {
    background-color: #fff8e6;
    border: 1px solid #ffecb3;
}

.pb-inline-tip .tip-icon {
    margin-right: 16px;
    font-size: 24px;
}

.pb-inline-tip.pro_tip .tip-icon {
    color: #0070f3;
}

.pb-inline-tip.actionable .tip-icon {
    color: #f5a623;
}

.pb-inline-tip .tip-content {
    font-size: 14px;
}

.pb-inline-tip .tip-content strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

/* Utility classes replacing inline styles */
.pb-tool-card {
    display: flex;
    flex-direction: column;
}
.pb-support-intro-text {
    font-size: 18px;
    color: #717171;
    margin-bottom: 32px;
}
.pb-tool-card-title-link {
    color: inherit;
    text-decoration: none;
}
.pb-tool-card-desc {
    color: #717171;
    margin-bottom: 16px;
}
.pb-tool-meta {
    margin-top: auto;
    font-size: 14px;
    background: #ffffff;
    padding: 12px;
    border-radius: 8px;
}
.pb-tool-meta-row {
    margin-bottom: 8px;
}
.pb-inline-tip-container {
    margin-top: 16px;
}
.pb-tools-view-all-btn {
    margin-top: 32px;
    display: inline-block;
}
.pb-support-side-help {
    margin-top: 48px;
    padding: 24px;
    background: #f7f7f7;
    border-radius: 12px;
}
.pb-support-side-help-title {
    margin-top: 0;
}
.pb-support-side-help-desc {
    font-size: 14px;
    color: #717171;
}
.pb-support-side-help-btn {
    width: 100%;
    text-align: center;
    margin-top: 16px;
}
