﻿/* ????? ???: ??????? ???? ? ???? */
body {
  font-family: Arial, sans-serif;
    direction: rtl;
    text-align: right;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* ????? ???: ??????? ??? */
header {
  text-align: right;
  background-color: #f1f1f1;
  padding: 20px;
}

.header-title {
  margin: 0;
  font-size: 24px;
}


main {
  margin-top: 20px;
}

.post {
  display: flex;
  margin-bottom: 20px;
}

.post-thumbnail {
  flex: 0 0 400px;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
}

.post-content {
  flex: 1;
  padding: 20px;
}

.post-title {
  margin-top: 0;
  font-size: 20px;
}

.post-excerpt {
  font-size: 16px;
  color: #888;
}

.post-link {
  display: inline-block;
  margin-top: 10px;
  color: #000;
  text-decoration: none;
}

.post-link i {
  margin-left: 5px;
}


footer {
  text-align: center;
  background-color: #f1f1f1;
  padding: 20px;
}

/* ??????? ?? ?????? */
.fa-angle-left {
  margin-right: 5px;
}

/* ???????? ???? ???? */
@media screen and (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .post {
    flex-direction: column;
  }

  .post-thumbnail {
    flex: 1;
    margin-bottom: 10px;
  }

  .post-content {
    flex: 1;
    padding: 0;
  }
}

@media screen and (max-width: 480px) {
  .header-title {
    font-size: 20px;
  }

  .post-title {
    font-size: 18px;
  }

  .post-excerpt {
    font-size: 14px;
  }
}
.post {
  display: flex;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.post:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
body {
  background-color: #f7f7f7;
}

.header {
  background-color: #333;
  color: #fff;
}

.header-title {
  font-size: 24px;
}

.post {
  display: flex;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.post:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.post-thumbnail {
  flex: 1;
  margin-right: 20px;
}

.post-content {
  flex: 1;
  padding: 20px;
}

.post-title {
  font-size: 20px;
  color: #333;
}

.post-excerpt {
  font-size: 16px;
  color: #666;
}
.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  display: inline-block;
  margin-right: 10px;
}

.menu a {
  text-decoration: none;
}

.menu .fa-download {
  margin-right: 5px;
}