@import url("https://use.typekit.net/xyn3ecx.css");
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;500;600;700;800;900&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat+Subrayada&family=Nokora:wght@100;300;400;700;900&family=PT+Sans+Narrow:wght@400;700&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,400&display=swap");
/* font-family: haboro-contrast-normal, sans-serif;
font-family: 'Cinzel', serif;
font-family: 'Cinzel Decorative', cursive;
font-family: 'Lobster Two', cursive;
font-family: 'Nokora', sans-serif;
font-family: 'PT Sans Narrow', sans-serif;
font-family: 'Titillium Web', sans-serif;
font-family: 'Montserrat Subrayada', sans-serif; */
.main-navigation ul li:nth-of-type(2) a {
  font-weight: 700;
  color: #8d2323;
}

.blog-main {
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto;
  align-items: flex-start;
  justify-items: center;
  padding-top: 80px;
}

.hero-image {
  width: 100%;
  height: 20vh;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -o-object-position: center 45%;
     object-position: center 45%;
  opacity: 0.95;
}

.blog-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  border-radius: 20px;
}
.blog-header h1 {
  font-size: 3rem;
  font-family: "Cinzel Decorative", cursive;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 8px;
  line-height: 1.2rem;
}

.blog-subheader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
}
.blog-subheader h1 {
  font-size: 2rem;
  font-family: "Cinzel Decorative", cursive;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  line-height: 1.2rem;
}
.blog-subheader h1 a {
  text-decoration: none;
  color: blue;
}

.post-cont {
  width: 1440px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  grid-template-rows: 40vh;
  padding: 3rem 0;
}
.post-cont .posts {
  background-color: #fff;
  color: black;
  position: relative;
  width: 100%;
  display: grid;
  grid-template-rows: 55% 20% 25%;
  padding: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  height: 100%;
  opacity: 0;
  transform: translateY(15%);
}
.post-cont .posts .post-text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 0.5rem;
}
.post-cont .posts .post-text h2 {
  font-size: 1.5rem;
  font-family: "Cinzel Decorative", cursive;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 0.2rem;
}
.post-cont .posts .post-text h3 {
  font-size: 1.1rem;
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 0.4rem;
}
.post-cont .posts .image-cont {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  padding-bottom: 0.5rem;
  overflow: hidden;
}
.post-cont .posts .image-cont img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: all 1s ease-in-out;
}
.post-cont .posts .post-summary {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: justify;
  font-family: "Titillium Web", sans-serif;
}
.post-cont .posts .post-summary p {
  font-size: 1rem;
  text-transform: capitalize;
}
.post-cont .posts .post-summary p span {
  font-weight: 700;
  padding-right: 0.2rem;
}
.post-cont .posts .post-summary p .category1 {
  background-color: cadetblue;
  color: #fff;
  border-radius: 0.25rem;
  padding: 0 0.25rem;
}
.post-cont .posts .post-summary p .category2 {
  background-color: rgb(26, 95, 134);
  color: #fff;
  border-radius: 0.25rem;
  padding: 0 0.25rem;
}
.post-cont .posts .post-summary p .category3 {
  background-color: rgb(240, 160, 107);
  color: #fff;
  border-radius: 0.25rem;
  padding: 0 0.25rem;
}
.post-cont .posts .post-summary p .category4 {
  background-color: rgb(236, 93, 88);
  color: #fff;
  border-radius: 0.25rem;
  padding: 0 0.25rem;
}
.post-cont .posts .post-summary p a {
  text-decoration: none;
  font-size: 1rem;
  color: blue;
}
.post-cont .posts:hover {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3), 8px -16px 18px rgba(0, 0, 0, 0.4);
}
.post-cont .posts:hover .image-cont > img {
  transform: scale(1.2);
}

hr {
  height: 8px;
  position: relative;
  width: 100%;
  text-align: center;
  background-image: url(../images/flag-kopya.png);
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.hhg {
  height: 100%;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  padding: 4rem 0 4rem 4rem;
  font-family: "Titillium Web", sans-serif;
}
.hhg h2 {
  display: block;
  font-size: 2rem;
  padding: 0 4rem;
  background-image: url(../images/flag-kopya.png);
  background-size: cover;
  border-radius: 10px;
}
.hhg h2 a {
  text-decoration: none;
  color: black;
}
.hhg h2:hover {
  transform: scale(1.05);
  box-shadow: 2px 2px 6px red;
}

.article-page {
  min-height: auto;
  width: 100%;
}/*# sourceMappingURL=blog.css.map */