/* CSS variables for theming */
.rd-container-63a21e62 {
    --rd-primary: #0056b3;
    --rd-bg: #f8fafc;
    --rd-card-bg: rgba(255, 255, 255, 0.85);
    --rd-text: #1e293b;
    --rd-text-light: #64748b;
    --rd-border: #e2e8f0;
    
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--rd-bg);
    color: var(--rd-text);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.rd-hero {
    padding: 60px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: #fff;
}
.rd-hero-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.rd-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}
.rd-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.rd-stat-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}
.rd-stat-val {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
}
.rd-stat-lbl {
    font-size: 0.9rem;
    opacity: 0.8;
}

.rd-search-bar {
    padding: 20px;
    background: #fff;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--rd-border);
}
.rd-search-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--rd-border);
    border-radius: 20px;
    font-size: 1rem;
    background: var(--rd-bg);
}
.rd-search-input:focus {
    outline: none;
    border-color: var(--rd-primary);
}
.rd-btn {
    background: var(--rd-primary);
    color: #fff;
    border: none;
    padding: 0 25px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s ease;
}
.rd-btn:hover {
    opacity: 0.9;
}

.rd-tabs {
    display: flex;
    background: #fff;
    border-bottom: 1px solid var(--rd-border);
}
.rd-tab-btn {
    flex: 1;
    padding: 15px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--rd-text-light);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}
.rd-tab-btn.active {
    color: var(--rd-primary);
    border-bottom-color: var(--rd-primary);
}
.rd-tab-btn:hover {
    background: var(--rd-bg);
}

.rd-content-area {
    padding: 30px 20px;
}
.rd-tab-pane {
    display: none;
    animation: rdFadeIn 0.4s ease;
}
.rd-tab-pane.active {
    display: block;
}

@keyframes rdFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.rd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.rd-card {
    background: var(--rd-card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--rd-border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rd-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.rd-card-cover {
    height: 120px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--rd-border);
}
.rd-card-body {
    padding: 20px;
    flex: 1;
}
.rd-card-title {
    margin: 0 0 5px 0;
    font-size: 1.25rem;
    color: var(--rd-text);
}
.rd-card-meta {
    font-size: 0.9rem;
    color: var(--rd-text-light);
    margin: 0 0 15px 0;
    line-height: 1.4;
}
.rd-card-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
}
.rd-card-desc p {
    margin: 0 0 10px 0;
}
.rd-see-more {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--rd-primary);
    text-decoration: none;
    margin-bottom: 15px;
}
.rd-see-more:hover {
    text-decoration: underline;
}
.rd-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    background: #f1f5f9;
}
.rd-status-open { color: #16a34a; background: #dcfce7; }
.rd-status-contact { color: #ca8a04; background: #fef9c3; }
.rd-status-closed { color: #dc2626; background: #fee2e2; }

.rd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.rd-tag {
    background: var(--rd-bg);
    border: 1px solid var(--rd-border);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--rd-text-light);
}

.rd-card-footer {
    padding: 12px 20px;
    background: #f8fafc;
    border-top: 1px solid var(--rd-border);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
.rd-action-btn {
    background: none;
    border: 1px solid var(--rd-border);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--rd-text-light);
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}
.rd-action-btn:hover {
    background: var(--rd-primary);
    color: #fff;
    border-color: var(--rd-primary);
}

.rd-footer-layer {
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-top: 2px solid var(--rd-primary);
    text-align: center;
}
.rd-footer-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.rd-footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.rd-footer-link {
    background: var(--rd-bg);
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--rd-primary);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}
.rd-footer-link:hover {
    background: #e2e8f0;
}
.rd-footer-note {
    color: var(--rd-text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .rd-hero-title { font-size: 2rem; }
    .rd-search-bar { flex-direction: column; }
    .rd-btn { padding: 12px; }
}