@charset "UTF-8";
/* ============================================
   COMPONENTS - Modular SCSS Architecture
   ============================================ */
/* ============================================
   ALERT BAR COMPONENT
   ============================================ */
.alert-bar {
  height: 64px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.alert-bar.visible {
  transform: translateY(0);
}
.alert-bar-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 64px;
  padding-right: 20px;
  padding-left: 20px;
}
.alert-bar-text-wrapper {
  flex: 1;
  height: 64px;
  margin-right: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.alert-bar-text-wrapper.swiper {
  cursor: grab;
}
.alert-bar-text-wrapper.swiper:active {
  cursor: grabbing;
}
.alert-bar-text-wrapper.swiper .swiper-wrapper {
  align-items: center;
}
.alert-bar-text-wrapper.swiper .swiper-slide {
  width: auto !important;
  display: flex;
  align-items: center;
}
.alert-bar-buttons {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 64px;
}
.alert-bar-label {
  flex-shrink: 0;
  margin: 0;
  padding-right: 20px;
  border-right: 1px solid white;
  font-size: 3.75rem;
  line-height: 1;
}
@media (max-width: 990px) {
  .alert-bar-label {
    font-size: 2rem;
  }
}
.alert-bar-message {
  flex-shrink: 0;
  margin: 0;
  padding-right: 20px;
  font-size: 1.125rem;
  line-height: 1.5;
  white-space: nowrap;
}
@media (max-width: 990px) {
  .alert-bar-message {
    font-size: 0.875rem;
    border-right: none;
  }
}
.alert-bar-arrow {
  width: 44px;
  height: 44px;
}
.alert-bar-close {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alert-bar-close i {
  font-size: 1.25rem;
}

body.has-alert-bar {
  padding-bottom: 64px;
}

.has-alert-bar .mobile-bottom-bar {
  bottom: 64px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ============================================
   TEASER CARD COMPONENT (used in multiple places)
   ============================================ */
/* Teaser Card - Universal card component */
.teaser-card {
  position: relative;
  background-color: var(--color-white);
  outline: 1px solid var(--color-primary);
  outline-offset: -1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 16px;
  text-decoration: none;
  transition: all var(--transition-fast);
  z-index: 1;
}
@media (min-width: 768px) {
  .teaser-card {
    gap: 16px;
    padding: 24px 16px;
  }
}
@media (min-width: 991px) {
  .teaser-card {
    padding: 32px;
  }
}
.teaser-card:hover {
  background-color: var(--color-primary);
  outline-color: var(--color-primary);
}
.teaser-card:hover .teaser-card-icon {
  transform: scale(1.05);
}
.teaser-card:hover .teaser-card-icon img {
  filter: brightness(0) invert(1);
}
.teaser-card:hover h5 {
  color: var(--color-white);
}

/* Teaser Card Icon Container */
.teaser-card-icon {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.teaser-card-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Teaser Card Title */
.teaser-card h5 {
  margin-bottom: 0;
  text-align: center;
}
@media all and (max-width: 400px) {
  .teaser-card h5 {
    font-size: 15px !important;
  }
}

/* Emergency Phone Box */
.emergency-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-navy);
  padding: 40px;
  min-height: 200px;
}

.emergency-box-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.emergency-number {
  font-family: Larken, serif;
  font-weight: 300;
  font-size: 4.5rem;
  line-height: 1;
  display: inline-block;
  padding: 8px 24px;
  border-radius: 9999px;
  color: #ecd3d2;
  background-color: var(--color-alarm);
}
@media (min-width: 768px) {
  .emergency-number {
    font-size: 6rem;
  }
}

.emergency-label {
  font-family: Larken, serif;
  font-weight: 300;
  font-size: 1.875rem;
  line-height: 1.25;
  color: #ecd3d2;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .emergency-label {
    font-size: 2.25rem;
  }
}

/* ============================================
   HERO SLIDER COMPONENT
   ============================================ */
/* Hero section wrapper */
.hero-section {
  height: auto;
  background-color: var(--color-white);
  position: relative;
  z-index: 0;
  max-width: 2160px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 991px) {
  .hero-section {
    height: 623px;
    margin-bottom: -126px;
  }
}

/* Hero swiper container */
.hero-swiper {
  height: 100%;
}

/* Slide layout container */
.hero-slide-layout {
  display: flex;
  flex-direction: column-reverse;
  height: 100%;
  position: relative;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-slide-layout {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
  }
}

/* Content area (text + button) */
.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem 1.25rem;
  flex-shrink: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-content {
    width: 600px;
    padding: 0 5rem 120px 10rem;
    text-align: left;
  }
}

/* Inner content wrapper */
.hero-content-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-content-inner {
    align-items: flex-start;
  }
}

/* Hero title reset */
.hero-content h1 {
  margin: 0;
}

/* Hero image container */
.hero-image-container {
  flex: 1;
  height: 18rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-image-container {
    height: 100%;
  }
}
.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Pagination - Custom classes to avoid Swiper conflicts */
.hero-pagination {
  position: absolute !important;
  bottom: 40px !important;
  left: 50% !important;
  top: auto !important;
  width: auto !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 8px !important;
  z-index: 10 !important;
}
@media (min-width: 768px) {
  .hero-pagination {
    bottom: 140px !important;
    left: 100px !important;
    transform: translateX(-50%) !important;
  }
}

/* Override Swiper's default horizontal pagination styles */
.swiper-horizontal > .hero-pagination {
  bottom: 0px !important;
  left: 50% !important;
  top: auto !important;
  width: auto !important;
  transform: translateX(-50%) !important;
}
@media (min-width: 768px) {
  .swiper-horizontal > .hero-pagination {
    bottom: 150px !important;
    left: 200px !important;
    transform: translateX(-50%) !important;
  }
}

.hero-pagination-dot {
  width: 8px !important;
  height: 8px !important;
  background: var(--color-primary) !important;
  opacity: 0.3 !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  transition: all var(--transition-fast) !important;
}
.hero-pagination-dot.active {
  width: 24px !important;
  opacity: 1 !important;
  border-radius: 4px !important;
}

/* ============================================
   INFO SECTION COMPONENT
   ============================================ */
/* Base info section */
.info-section {
  position: relative;
  padding: 40px 20px;
}
@media (min-width: 991px) {
  .info-section {
    padding: 0px 40px;
  }
}
@media (min-width: 1400px) {
  .info-section {
    padding: 80px 80px;
  }
}
.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(229, 210, 209, 0.58) 0%, rgba(207, 222, 233, 0.37) 47.6%, rgba(255, 255, 255, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: 0;
  pointer-events: none;
}
.info-section:hover::before {
  opacity: 1;
}
.info-section > * {
  position: relative;
  z-index: 1;
}

/* First info section - extends hover gradient to cover teasers above */
.info-section-first::before {
  top: -126px;
}
@media (min-width: 768px) {
  .info-section-first::before {
    top: -126px;
  }
}

/* Border variants - can be combined */
.info-section-border-top {
  border-top: 1px solid var(--color-primary);
}

.info-section-border-bottom {
  border-bottom: 1px solid var(--color-primary);
}

@media (min-width: 991px) {
  .info-section-border-left {
    border-left: 1px solid var(--color-primary);
  }
}

@media (min-width: 991px) {
  .info-section-border-right {
    border-right: 1px solid var(--color-primary);
  }
}

/* Layout variants */
.info-section-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}
@media (min-width: 991px) {
  .info-section-layout {
    flex-direction: row;
    gap: 40px;
    align-items: stretch;
  }
}

@media (min-width: 991px) {
  .info-section-layout-reverse {
    flex-direction: row-reverse;
  }
}

/* Image container */
.info-section-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  order: 1;
}
@media (min-width: 991px) {
  .info-section-image {
    width: 50%;
    order: 0;
  }
}
@media (min-width: 1200px) {
  .info-section-image {
    width: 60%;
    order: 0;
  }
}
.info-section-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Content container */
.info-section-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 20px 20px;
  align-items: flex-start;
  order: 2;
}
@media (min-width: 991px) {
  .info-section-content {
    flex: 1;
    padding: 112px 40px;
    order: 0;
  }
}
@media (min-width: 1200px) {
  .info-section-content {
    flex: 1;
    padding: 112px 80px;
    order: 0;
  }
}

/* Text content */
.info-section-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-section-title {
  margin: 0;
}

.info-section-description {
  margin: 0;
  color: var(--color-navy);
}

/* Decorative line */
.info-section-line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: var(--color-navy);
  display: none;
}
@media (min-width: 991px) {
  .info-section-line {
    display: block;
  }
}

.info-section-line-left {
  left: 44px;
}

.info-section-line-right {
  right: 48px;
}

/* Mobile clickable version */
.info-section-mobile {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  text-decoration: none;
}
@media (min-width: 991px) {
  .info-section-mobile {
    display: none;
  }
}

.info-section-mobile-icon-above {
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.info-section-mobile-icon-above i {
  font-size: 3rem;
  color: var(--color-navy);
}
.info-section-mobile-icon-above img {
  max-height: 80px;
  object-fit: contain;
}

.info-section-mobile-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 20px 20px;
  align-items: center;
  order: 2;
}

.info-section-mobile-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-section-mobile-icon i {
  font-size: 1.875rem;
  color: var(--color-navy);
}
.info-section-mobile-icon img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.info-section-mobile-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-section-mobile-text h2 {
  margin: 0;
  color: var(--color-navy);
}
.info-section-mobile-text p {
  margin: 0;
  color: var(--color-navy);
}

.info-section-mobile-arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-section-mobile-arrow i {
  font-size: 1.25rem;
  color: var(--color-navy);
}

/* Desktop version */
.info-section-desktop {
  display: none;
}
@media (min-width: 991px) {
  .info-section-desktop {
    display: flex;
  }
}

/* ============================================
   NEWS SECTION COMPONENT
   ============================================ */
/* Main section */
.news-section {
  position: relative;
  padding: 40px 0;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .news-section {
    padding: 144px 0;
  }
}

/* Decorative SVG */
.news-section-decoration {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

/* Header */
.news-header {
  margin-bottom: 48px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .news-header {
    padding: 0 80px;
  }
}

.news-header-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .news-header-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
  }
}

.news-title {
  margin: 0;
  color: var(--color-navy);
  text-align: center;
}
@media (min-width: 768px) {
  .news-title {
    text-align: left;
  }
}

/* Filters */
.news-filters {
  display: flex;
  gap: 10px;
}
@media (min-width: 768px) {
  .news-filters {
    flex-wrap: wrap;
    align-items: center;
  }
}

.news-filters-desktop {
  display: none;
}
@media (min-width: 768px) {
  .news-filters-desktop {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
}

.news-filters-mobile {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  align-items: center;
}
@media (min-width: 768px) {
  .news-filters-mobile {
    display: none;
  }
}

.news-filters-mobile-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.news-filters-mobile-button {
  display: flex;
  justify-content: center;
}

/* Swiper */
.news-swiper {
  overflow: visible;
  padding-left: 20px;
}

.news-swiper .swiper-slide {
  width: 240px;
  height: auto;
  display: flex;
}
@media (min-width: 768px) {
  .news-swiper .swiper-slide {
    width: 384px;
    height: 546px;
  }
}

.news-swiper .swiper-wrapper {
  align-items: stretch;
}

/* News item card */
.news-item {
  display: flex;
  flex-direction: column;
  height: auto;
}
.news-item.hidden {
  display: none;
}
.news-item a {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  text-decoration: none;
  background-color: var(--color-white);
  outline: 1px solid var(--color-navy);
  outline-offset: -1px;
  transition: all var(--transition-fast);
}
.news-item a:hover {
  background-color: var(--color-primary);
  outline-color: var(--color-primary);
}
.news-item a:hover .news-item-image img {
  transform: scale(1.05);
}
.news-item a:hover .news-item-date,
.news-item a:hover .news-item-title,
.news-item a:hover .news-item-excerpt {
  color: var(--color-white);
}
.news-item a:hover .news-item-category {
  background-color: white !important;
  color: var(--color-primary) !important;
  border-color: var(--cat-color) !important;
}

.news-item-image {
  width: 100%;
  height: 112px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .news-item-image {
    height: 256px;
  }
}
.news-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.news-item-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 112px;
  background-color: rgba(58, 64, 127, 0.05);
}
@media (min-width: 768px) {
  .news-item-image-placeholder {
    height: 256px;
  }
}
.news-item-image-placeholder i {
  font-size: 4rem;
  opacity: 0.2;
  color: var(--color-navy);
}

.news-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 768px) {
  .news-item-content {
    gap: 14px;
  }
}

.news-item-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.news-item-date {
  color: var(--color-black);
}

.news-item-category {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-primary) !important;
  padding: 6px 15px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  height: 33px;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.news-item-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375;
  color: var(--color-navy);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .news-item-title {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }
}

.news-item-excerpt {
  display: none;
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 300;
  color: var(--color-navy);
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .news-item-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
  }
}

/* No results message */
.news-no-results {
  display: none;
  text-align: center;
  padding: 60px 20px;
  margin-left: 20px;
  color: var(--color-navy);
}
@media (min-width: 768px) {
  .news-no-results {
    margin-left: 80px;
  }
}
.news-no-results.visible {
  display: block;
}
.news-no-results i {
  font-size: 4rem;
  opacity: 0.3;
  margin-bottom: 16px;
}
.news-no-results p {
  margin: 0;
  font-size: 1.125rem;
}

/* ============================================
   PAGE CARD COMPONENT
   ============================================ */
/* Page Card - Card for displaying pages in category/search views
   Similar to post-card but without date and excerpt
   Shows: Featured image, category badge, and title only
*/
.page-card {
  background-color: var(--color-white);
  border-bottom: 1px solid #a6c0d4;
  padding: 20px 10px;
}
@media (min-width: 768px) {
  .page-card {
    padding: 48px 10px;
  }
}
.page-card a {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}
@media (min-width: 768px) {
  .page-card a {
    gap: 40px;
  }
}
.page-card a:hover .page-card-image img {
  transform: scale(1.05);
}
.page-card a:hover .page-card-title {
  text-decoration: underline;
}

.page-card-image {
  width: 145px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .page-card-image {
    width: 218px;
    height: 150px;
  }
}
.page-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.page-card-placeholder {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-card-placeholder span {
  color: rgba(0, 0, 0, 0.3);
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .page-card-placeholder span {
    font-size: 0.875rem;
  }
}

.page-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  gap: 8px;
}
@media (min-width: 768px) {
  .page-card-content {
    gap: 10px;
  }
}

.page-card-category {
  font-size: 10px;
  font-weight: 300;
  color: white !important;
  padding: 2px 7px;
  border-radius: 15px;
  line-height: 12.5px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
}
@media (min-width: 768px) {
  .page-card-category {
    font-size: 0.75rem;
  }
}

.page-card-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-navy);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-card-title {
    font-size: 1.75rem;
    line-height: 1.25;
  }
}

/* ============================================
   FORMS COMPONENT - Shared styles for all forms
   ============================================ */
/* Floating label animation */
.floating-label-wrapper input:focus + label,
.floating-label-wrapper input:not(:placeholder-shown) + label,
.floating-label-wrapper textarea:focus + label,
.floating-label-wrapper textarea:not(:placeholder-shown) + label {
  transform: translateY(-28px) scale(0.85);
  background: white;
  padding: 0 4px;
}

/* Select floating label - always moved up */
.floating-label-wrapper select + label {
  transform: translateY(-28px) scale(0.85);
  background: white;
  padding: 0 4px;
}

/* Select styling */
.floating-label-wrapper select {
  cursor: pointer;
  transition: border-color 0.2s ease, border-radius 0.2s ease, box-shadow 0.2s ease;
}

/* Select - tylko gdy lista jest otwarta (klasa dodawana przez JS) */
.floating-label-wrapper select.dropdown-open {
  border-color: var(--color-primary) !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  box-shadow: 0 4px 12px rgba(58, 64, 127, 0.1);
}

/* Input active/focus state */
.floating-label-wrapper input:focus,
.floating-label-wrapper input:active,
.floating-label-wrapper textarea:focus,
.floating-label-wrapper textarea:active {
  border-color: var(--color-primary) !important;
  box-shadow: 0 4px 12px rgba(58, 64, 127, 0.1);
}

/* Select dropdown options styling */
.floating-label-wrapper select option {
  padding: 12px 16px;
  font-size: 15px;
  color: #3A407F;
  background: white;
  border: 1px solid #e5e7eb;
}

/* Select option hover/focus (partial browser support) */
.floating-label-wrapper select option:hover,
.floating-label-wrapper select option:focus,
.floating-label-wrapper select option:checked {
  background-color: #ecf5f8;
  color: #3A407F;
}

/* Hide label when select has empty value (default option) */
.floating-label-wrapper select[value=""] + label,
.floating-label-wrapper select:invalid + label {
  opacity: 0;
}

/* Disable browser autocomplete background */
.floating-label-wrapper input:-webkit-autofill,
.floating-label-wrapper input:-webkit-autofill:hover,
.floating-label-wrapper input:-webkit-autofill:focus,
.floating-label-wrapper select:-webkit-autofill,
.floating-label-wrapper select:-webkit-autofill:hover,
.floating-label-wrapper select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  box-shadow: 0 0 0px 1000px white inset !important;
  -webkit-text-fill-color: #3A407F !important;
}

/* Form response messages */
.form-response.success p {
  color: #7aaf80;
}

.form-response.error p {
  color: #c00418;
}

/* ============================================
   E-BOK + PRACA SECTION
   ============================================ */
/* E-BOK Card */
.ebok-card {
  outline: 2px solid transparent;
  outline-offset: -2px;
  transition: all 0.2s ease;
}
.ebok-card:hover {
  background-color: var(--color-navy) !important;
  outline-color: var(--color-white);
}
.ebok-card:hover h2, .ebok-card:hover h3, .ebok-card:hover p {
  color: var(--color-white) !important;
}
.ebok-card:hover .ebok-divider {
  background-color: var(--color-white) !important;
}
.ebok-card:hover .btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
}
.ebok-card:hover .btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-navy);
}

/* Dividers - transition */
.ebok-divider,
.praca-divider {
  transition: background-color 0.2s ease;
}

/* Praca Card - Hover effect (reverse colors) */
.praca-card {
  outline: 2px solid transparent;
  outline-offset: -2px;
  transition: all 0.2s ease;
}
.praca-card:hover {
  background-color: var(--color-navy) !important;
  outline-color: #f3ef99;
}
.praca-card:hover h1, .praca-card:hover h2, .praca-card:hover h3, .praca-card:hover p {
  color: #f3ef99 !important;
}
.praca-card:hover .praca-divider {
  background-color: #f3ef99 !important;
}
.praca-card:hover .btn-outline {
  border-color: #f3ef99;
  color: #f3ef99;
}
.praca-card:hover .btn-outline:hover {
  background-color: #f3ef99;
  color: var(--color-navy);
}

/* Od 1400px - boxy E-BOK i Praca obok siebie */
@media (min-width: 1400px) {
  .ebok-praca-section .container {
    flex-direction: row !important;
  }
  .praca-card {
    width: 42%;
  }
  .ebok-card {
    flex: 1;
  }
}
/* Mobile (< 1024px) - kolumny wewnątrz pionowo, dividery znikają */
@media (max-width: 1023px) {
  .ebok-card,
  .praca-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 24px !important;
    padding: 20px 24px !important;
  }
  .ebok-card h1, .ebok-card h2, .ebok-card h3, .ebok-card p,
  .praca-card h1,
  .praca-card h2,
  .praca-card h3,
  .praca-card p {
    text-align: center !important;
  }
  .ebok-card .btn,
  .praca-card .btn {
    width: 100%;
    max-width: 300px;
  }
  .ebok-divider,
  .praca-divider {
    display: none !important;
  }
}

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