@charset "UTF-8";
.sitemap .letters li {
  display: inline-block;
  background-color: #aab5bd;
}
.sitemap .letters li a {
  color: #fff;
  min-width: 2rem;
  line-height: 2rem;
  display: inline-block;
  text-align: center;
}

.read-more {
  float: right;
}

.image-container {
  width: 100%;
  max-height: 300px;
  height: 300px;
  margin: 20px 0;
  overflow: hidden;
}

.cropped-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
.meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.reading-time {
  display: flex;
  align-items: center;
}
.reading-time-icon {
  margin-right: 5px;
}

.post-categories {
  margin-top: 5px;
}

.category-name {
  font-weight: 500;
}

.author-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #007bff;
}

.author-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.author-photo {
  flex-shrink: 0;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.author-avatar-placeholder {
  background: #667eea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  cursor: default;
  transition: transform 0.2s ease;
}
.author-avatar-placeholder:hover {
  transform: scale(1.05);
}

.author-initials {
  font-size: 1.8rem;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.author-info {
  flex: 1;
}

.author-name {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.author-website {
  margin: 0.5rem 0;
}
.author-website a {
  color: #007bff;
  text-decoration: none;
  font-size: 0.9rem;
}
.author-website a:hover {
  text-decoration: underline;
}

.author-bio {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
}

.related-posts {
  margin: 3rem 0;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-top: 3px solid #007bff;
}
.related-posts-title {
  margin: 0 0 1.5rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}
.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.related-posts.layout-list .related-posts-grid {
  grid-template-columns: 1fr;
}
.related-posts.layout-list .related-post-item {
  display: flex;
  align-items: center;
}
.related-posts.layout-list .related-post-image {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
}
.related-posts.layout-list .related-post-content {
  flex: 1;
}
.related-posts.layout-compact .related-post-image {
  height: 120px;
}
.related-posts.layout-compact .related-post-content {
  padding: 1rem;
}
.related-posts.layout-compact .related-post-excerpt {
  display: none;
}

.related-post-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.related-post-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.related-post-item:hover .related-post-image img {
  transform: scale(1.05);
}

.related-post-image {
  position: relative;
  overflow: hidden;
  height: 180px;
}
.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-post-content {
  padding: 1.25rem;
}

.related-post-title {
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
}
.related-post-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}
.related-post-title a:hover {
  color: #007bff;
}

.related-post-excerpt {
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #888;
  border-top: 1px solid #eee;
  padding-top: 0.75rem;
}

.related-post-author {
  font-weight: 500;
  color: #555;
}

.related-post-date {
  font-style: italic;
}

@media (max-width: 768px) {
  .author-card {
    flex-direction: column;
    text-align: center;
  }
  .author-avatar {
    width: 60px;
    height: 60px;
  }
  .author-section {
    padding: 1rem;
  }
  .related-posts {
    margin: 2rem 0;
    padding: 1.5rem;
  }
  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .related-post-image {
    height: 160px;
  }
  .related-post-content {
    padding: 1rem;
  }
  .related-post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}
.category-list p {
  font-size: 14px;
}

.login-form .form-checkbox {
  margin-right: 10px;
  width: auto !important;
}

.company-card h2 {
  margin-bottom: 2rem;
}

body {
  font-family: var(--font_family);
  color: var(--font_color);
  background-color: #f9fafb; /* Domyślne tło - Tailwind gray-50 */
}

/* Paragrafy */
.content p {
  margin-bottom: 2em;
  line-height: 1.7;
}

/* Nagłówki */
.content h2 {
  margin-bottom: 2rem;
  margin-top: 3rem;
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700;
  color: #1f2937; /* gray-800 */
  line-height: 1.2;
}

.content h3 {
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
  font-size: 1.5rem; /* text-2xl */
  font-weight: 600;
  color: #374151; /* gray-700 */
  line-height: 1.3;
}

.content h4 {
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-size: 1.25rem; /* text-xl */
  font-weight: 600;
  color: #4b5563; /* gray-600 */
  line-height: 1.4;
}

/* Listy nienumerowane */
.content ul {
  margin-bottom: 2rem;
  margin-top: 1rem;
  padding-left: 0;
}

.content ul li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2rem;
  line-height: 1.6;
  list-style: none;
}

.content ul li::before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  color: #3b82f6; /* blue-500 */
  font-weight: bold;
  font-size: 1.2em;
}

/* Listy numerowane */
.content ol {
  margin-bottom: 2rem;
  margin-top: 1rem;
  padding-left: 0;
  counter-reset: list-counter;
}

.content ol li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2.5rem;
  line-height: 1.6;
  list-style: none;
  counter-increment: list-counter;
}

.content ol li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #3b82f6; /* blue-500 */
  font-weight: bold;
  min-width: 2rem;
}

/* Zagnieżdżone listy */
.content ul ul,
.content ol ol,
.content ul ol,
.content ol ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.content ul ul li::before {
  content: "◦";
  color: #6b7280; /* gray-500 */
}

/* Linki */
.content a {
  color: #3b82f6; /* blue-500 */
  text-decoration: underline;
  text-decoration-color: rgba(59, 130, 246, 0.3);
  text-underline-offset: 2px;
  transition: all 0.2s ease;
}

.content a:hover {
  color: #1d4ed8; /* blue-700 */
  text-decoration-color: #1d4ed8;
}

/* Tekst pogrubiony */
.content strong {
  font-weight: 700;
  color: #1f2937; /* gray-800 */
}

/* Tekst pochylony */
.content em {
  font-style: italic;
  color: #4b5563; /* gray-600 */
}

/* Cytaty */
.content blockquote {
  border-left: 4px solid #3b82f6; /* blue-500 */
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #4b5563; /* gray-600 */
  background-color: #f8fafc; /* slate-50 */
  padding: 1.5rem;
  border-radius: 0.5rem;
}

/* Kod inline */
.content code {
  background-color: #f1f5f9; /* slate-100 */
  color: #e11d48; /* rose-600 */
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Monaco, Inconsolata, "Liberation Mono", "Consolas", monospace;
}

/* Bloki kodu */
.content pre {
  background-color: #1f2937; /* gray-800 */
  color: #f9fafb; /* gray-50 */
  padding: 1.5rem;
  border-radius: 0.75rem;
  overflow-x: auto;
  margin: 2rem 0;
}

.content pre code {
  background-color: transparent;
  color: inherit;
  padding: 0;
  border-radius: 0;
}

/* Tabele */
.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.content th {
  background-color: #3b82f6; /* blue-500 */
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.content td {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb; /* gray-200 */
}

.content tr:nth-child(even) {
  background-color: #f9fafb; /* gray-50 */
}

/* Linie poziome */
.content hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #d1d5db, transparent);
  margin: 3rem 0;
}

/* Obrazki */
.content img {
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
  max-width: 100%;
  height: auto;
}

/* Podpisy pod obrazkami */
.content figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280; /* gray-500 */
  margin-top: 0.5rem;
  font-style: italic;
}

/* Responsywność */
@media (max-width: 768px) {
  .content h2 {
    font-size: 1.5rem; /* text-2xl */
    margin-top: 2rem;
  }
  .content h3 {
    font-size: 1.25rem; /* text-xl */
    margin-top: 1.5rem;
  }
  .content ul li,
  .content ol li {
    padding-left: 1.5rem;
  }
  .content ol li::before {
    min-width: 1.5rem;
  }
}
.regulations-links {
  float: right;
  font-size: 10px;
}

.company-card ol {
  list-style: decimal;
  margin: 0 0 1em 1.5em;
  padding: 0;
}
.company-card ul {
  list-style: disc;
  margin: 0 0 1em 1.5em;
  padding: 0;
}
.company-card li {
  margin-bottom: 0.5em;
}
.company-card ol ol {
  list-style: lower-alpha;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.company-card ul ul {
  list-style: circle;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

/*# sourceMappingURL=override.css.map */
