.content-right {
    width: auto !important;
}

:root {
    --org-button-border: hsl(from var(--secondary-color) h s 70%);

    --org-button-bg: hsl(from var(--secondary-color) h s 95%);
    --org-button-bg-hover: hsl(from var(--secondary-color) h s 65%);
}

.org-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.org-logo.has-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--logo-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(20px);
    opacity: 0.5;
    z-index: 1;
}

.org-logo.no-logo {
    background: hsl(from var(--section-color) h s 95%);
}

.fallback-icon {
    font-size: 32px;
    color: var(--section-color);
    z-index: 2;
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0 !important;
    position: relative;
    z-index: 2;
    margin: auto;
}

.org-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #d5d5d5;
    background: #ffffff;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    min-width: 120px;
    justify-content: center;
    user-select: none;
}

.org-button:hover {
    background: #f0f0f0;
    border-color: #c0c0c0;
    text-decoration: none;
    color: #333333;
}

.org-button.org-button-active {
    border: 1px solid var(--org-button-border);
    background-color: var(--org-button-bg);
}

.org-button.org-button-active:hover {
    background: var(--org-button-bg-hover);
    color: #ffffff;
}

.org-button-text {
    white-space: nowrap;
}

/* ORG CARD */

.org-card-mini {
    border: 1px solid #d5d5d5;
    background: #ffffff;
    padding: 15px;
    width: 350px;
    box-sizing: border-box;
    border-radius: 0;
    text-decoration: none !important;
    margin: 0;
}

.org-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.org-info {
    flex: 1;
    min-width: 0;
}

.org-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.org-address, .org-working-time {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    color: #666666;
    font-size: 13px;
    overflow: hidden;
}

.org-address span, .org-working-time span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.address-icon, .time-icon {
    font-size: 14px;
    flex-shrink: 0;
    color: #888888;
}

.org-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.stars {
    display: flex;
    gap: 1px;
}

.star {
    font-size: 14px;
    color: #cccccc;
}

.stars.alternate .star {
    color: #666666;
}

.star.filled {
    color: #ffd700;
}

.rating-text {
    font-size: 12px;
    color: #666666;
    font-weight: 500;
    line-height: 1.1;
}

.org-logo {
    width: 80px;
    height: 80px;
}