*{
margin: 0;
padding: 0;
box-sizing: border-box;
}

a{
    text-decoration: none;
}
ul{
    list-style: none;
}

/* Header */
nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 50px;
}

nav a {
  color: #707070;
  font-size: 20px;
  margin-left: 50px;
}
/* მთავარი ფოტო */
.photo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  padding: 20px 5px;
}

.photo-section img {
  height: 100%;
  width: auto;
}

/* სტატიები */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 300px;
  overflow: hidden;
  text-align: left;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  color: #707070;
  margin-bottom: 10px;
  line-height: 1.4;
}

.card-content a {
  font-size: 14px;
  color: #070707;
  font-weight: bold;
}

.load-more {
  margin-top: 30px;
}

.load-more button {
  padding: 10px 20px;
  font-size: 16px;
  border: 1px solid #707070;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.load-more button:hover {
  background: #f2f2f2;
}
/* Footer */
footer {
  background: #2e2e2e;
  color: #fff;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-columns {
  display: flex;
  gap: 40px;
}

.footer-col {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social img {
  width: 24px;
  height: 24px;
}