body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     
      background: #ffffff; /* białe tło */
      color: #2c3e50;
    }
	
	
.logo-container {
	display: flex; 
	width: 100%; 
	height: 100%;
	align-items:center; 
	justify-content: start;
}

.logo-link {
	text-decoration: none;
	color: #2c3e50;
}

.logo-container p {
	font-size: 30px;
	padding-left: 50px;
}

.slogan {
	display: flex; 
	width: 100%; 
	height: 100%;
	align-items:center; 
	justify-content: center; 
	margin-top: 30px;
}


.listing {
      display: flex;
      max-width: 1000px; /* szerszy wiersz */
      background: #fff;
      border-radius: 0;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
      margin: 35px auto;
      align-items: stretch;
    }


.thumb {
      flex: 1 1 50%;
      overflow: hidden;
      background: #ddd;
    }


.thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      aspect-ratio: 4 / 3;
    }
	
	
.info {
      flex: 1 1 50%;
      padding: 24px 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
	
	
.title {
      font-size: 1.2rem;
      font-weight: 600;
      color: #1c2833;
      margin-bottom: 10px;
      line-height: 1.7;
    }
	
.title a:link {
	font-size: 1.2rem;
    font-weight: 600;
    color: #1c2833;
    margin-bottom: 10px;
    line-height: 1.7;
	text-decoration: none;
}


.title a:hover {
	text-decoration: underline;
}

.title a:visited {
	text-decoration: underline;
	color: #1c2833;
}
	
	
.details {
      margin-top: 12px;
      border-top: 1px solid #d1d5db;
      padding-top: 12px;
      font-size: 0.95rem;
      line-height: 1.5;
      color: #4a5568;
    }
	
	
.details div {
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

.details strong {
      font-weight: 600;
      color: #1b4d3e;
      min-width: 120px;
      display: inline-block;
    }
	
	
.details span {
      color: #2c3e50;
    }
	
.icon {
      width: 16px;
      height: 16px;
      fill: #1b4d3e;
      flex-shrink: 0;
    }
	
	
.readmore {
	display: flex; 
	justify-content: end
}
	
.btn {
      margin-top: 20px;
      justify-content: end;
      padding: 10px 18px;
      background-color: #1c2833;
      color: white;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      border-radius: 6px;
      transition: background-color 0.3s ease;
    }
	
.btn:hover {
      background-color: #122029;
    }
	
    
.price {
      font-size: 1.4rem;
      font-weight: 700;
      color: #1b4d3e;
      text-align: right;
      margin-top: 70px;
    }
	
	
@media (max-width: 768px) {
      .listing {
        flex-direction: column;
		margin-bottom: 60px;
      }
      .thumb, .info {
        
      }
      .thumb img {
        height: 320px;
        object-fit: cover;
      }
      .info {
        padding: 20px 28px;
      }
      .price {
        text-align: right;
        font-size: 1.2rem;
        margin-top: 56px;
      }
	  .logo-container {
		  justify-content: center;
	  }
	  .logo-container p {
		  padding-left: 0px;
	  }
	  .slogan h1 {
		  font-size: 26px;
		  text-align: center;
	  }
	  .slogan p {
		  padding: 10px;
	  }
	  .info {
		  flex: 1 1 50%;
		  padding: 24px 17px;
		  display: flex;
		  flex-direction: column;
		  justify-content: space-between;
	  }
    }
	
	
.footer {
	display: flex;
	justify-content: center;
	margin-top: 70px;
	margin-bottom: 40px;
	font-size: 16px;
}