/* ==========================================================================
   SeedsVision — Organisations (directory + single). Builds on catalog.css.
   ========================================================================== */

/* --------------------------------- Directory grid ------------------------ */
.org-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.org-card { display: flex; flex-direction: column; background: #f7f7f7; border-radius: 8px; overflow: hidden; }
.org-card__media { display: flex; align-items: center; justify-content: center; aspect-ratio: 16 / 11; background: #f0f0f0; }
.org-card__media:hover { text-decoration: none; }
.org-card__logo { display: flex; align-items: center; justify-content: center; width: 96px; height: 96px; border-radius: 50%; background: #fff; overflow: hidden; color: #c4c4c4; }
.org-card__logo img { width: 100%; height: 100%; object-fit: contain; padding: 14px; box-sizing: border-box; }
.org-card__body { padding: 16px; }
.org-card__type { margin: 0 0 6px; font-size: 13px; color: var(--color-fg-muted); }
.org-card__title { margin: 0; font-size: 17px; font-weight: 700; line-height: 1.35; }
.org-card__title a:hover { color: var(--color-green); text-decoration: none; }

/* --------------------------------- Single -------------------------------- */
.org-single { padding-bottom: 80px; }

.org-tabs { display: flex; flex-wrap: wrap; gap: 28px; margin: 14px 0 32px; border-bottom: 1px solid var(--color-border); }
.org-tab { position: relative; padding: 4px 2px 16px; font-size: 15px; font-weight: 500; color: var(--color-fg-muted); }
.org-tab:hover { color: var(--color-fg); text-decoration: none; }
.org-tab.is-active { color: var(--color-fg); }
.org-tab.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--color-yellow); }

/* Деталі */
.org-details { display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: start; }
.org-details__logo { aspect-ratio: 1 / 1; background: #f3f3f3; border-radius: 8px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.org-details__logo img { max-width: 70%; max-height: 70%; object-fit: contain; }
.org-details__logo .placeholder-img { width: 60%; height: 60%; border-radius: 50%; }
.org-details__main .event-info { border-top: 1px solid var(--color-border); }
.org-details__main .event-single__section-title:first-child { margin-top: 0; }

/* Каталог продукції tab reuses .catalog-layout (catalog.css) */
.org-catalog-tab { margin-top: 4px; }

/* --------------------------------- Responsive ---------------------------- */
@media (max-width: 1000px) {
	.org-grid { grid-template-columns: repeat(2, 1fr); }
	.org-details { grid-template-columns: 260px 1fr; gap: 32px; }
}
@media (max-width: 720px) {
	.org-grid { grid-template-columns: 1fr; }
	.org-details { grid-template-columns: 1fr; gap: 24px; }
	.org-details__logo { max-width: 320px; }
}
