.elementor-1355 .elementor-element.elementor-element-b7510ea{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1355 .elementor-element.elementor-element-6d44ef1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-cbc7881 *//* === Sekcja: Graphic Services === */
.graphic-services-section {
  padding: 100px 20px;
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  color: #fff;
  background: #ffffff00 !important;
}

.graphic-services-section h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ff9c00;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Karty graficzne */
.graphic-services-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.graphic-service-card {
  background: #111;
  border: 1px solid rgba(255, 156, 0, 0.15);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(255, 156, 0, 0.08);
  padding: 30px 24px;
  width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.graphic-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(255, 156, 0, 0.2);
}

.graphic-service-card h3 {
  font-size: 1.4rem;
  color: #ff9c00;
  margin-bottom: 12px;
  text-align: center;
}

.graphic-service-card p {
  font-size: 1rem;
  color: #ccc;
  opacity: 0.88;
  line-height: 1.6;
  text-align: center;
}

/* Responsywność */
@media (max-width: 768px) {
  .graphic-service-card {
    width: 100%;
    max-width: 380px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ab3de8e */.graphic-projects-section {
  padding: 100px 20px;
  background: #111;
  color: #fff;
  font-family: 'Urbanist', sans-serif;
  text-align: center;
}

.graphic-projects-section h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ff9c00;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.format-title {
  font-size: 1.6rem;
  color: #ff9c00;
  margin: 60px 0 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Ogólna siatka */
.graphic-grid {
  display: grid;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
}

/* 16:9 format */
.format-16-9 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.format-16-9 .graphic-item img {
  aspect-ratio: 16 / 9;
}

/* 4:3 format */
.format-4-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.format-4-3 .graphic-item img {
  aspect-ratio: 4 / 3;
}

/* 9:16 format */
.format-9-16 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.format-9-16 .graphic-item img {
  aspect-ratio: 9 / 16;
}

/* Karta + animacje */
.graphic-item {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 156, 0, 0.15);
  box-shadow: 0 6px 20px rgba(255, 156, 0, 0.08);
  cursor: pointer;
}

.graphic-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(255, 156, 0, 0.2);
}

.graphic-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: brightness(0.92);
  object-fit: cover;
  border-radius: 16px;
}

.graphic-item:hover img {
  transform: scale(1.03);
  filter: brightness(1);
}

/* Responsywność */
@media (max-width: 768px) {
  .graphic-projects-section h2 {
    font-size: 2rem;
  }

  .format-title {
    font-size: 1.3rem;
  }
}/* End custom CSS */