/* //////////////////////////////// */
/* BLOG SECTION BEGIN */
/* //////////////////////////////// */
.section-blog-post {
  padding: 0 1rem;
  margin-top: 3rem;
}

.blog-post {
  padding: 0 1rem;
  padding-bottom: 8rem;
  max-width: 800px;
  margin: 0 auto;
  color: black;
}

.post-time--box {
  padding: 1rem 0;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.type-tag {
  font-weight: 500 !important;
}

.blog-post-heading {
  font-size: 3.6rem;
  margin-top: 3rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -1.1px;
  font-family: inter;
}

.blog-para {
  font-size: 1.8rem;
  margin-top: 2rem;
  font-weight: 400;
}

.blog-post-img {
  background-size: cover;
  width: 800px;
  margin-top: 6rem;
}

.blog-h2 {
  margin-top: 4rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -1.1px;
  font-family: inter;
}

.article-ul-box {
  font-size: 1.8rem;
  margin-left: 5rem;
  margin-top: 2rem;
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
  line-height: 1.5;
}

.blog-author-box {
  margin-top: 8rem;
  border-top: 2px solid var(--border-clr);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.author-profile-box {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.author--img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}

.author-info--box {
  display: flex;
  flex-flow: column;
  font-size: 1.6rem;
  gap: 0.5rem;
}

.author-name--box {
  font-weight: 500;
}

.share-links--box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.6rem;
}

.share-ul {
  display: flex;
  list-style: none;
  align-items: center;
}

.share-links {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: all 0.3s;
}

.blog-social-icon {
  font-size: 2rem;
  color: var(--primary-txt-clr);
}

.share-links:hover {
  transform: scale(1.2);
}

.blog-post a,
.blog-para a {
  color: inherit;
}

.blog-post a:hover,
.blog-para a:hover {
  color: rebeccapurple;
}

.alone-link {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  width: 35px;
  height: 35px;
  background-color: transparent;
  border-radius: 100%;
  transition: all 0.3s;
}

.alone-link:hover {
  color: #ffffff;
  background-color: var(--primary1-clr);
}

.alone-link:active {
  font-size: 1.5rem;
}

.alone-link:hover .alone-icon {
  color: #ffffff;
}

/* CONTACT PAGE */

.contact-head {
  letter-spacing: 0.4px;
  text-align: left;
  font-size: 3rem;
  color: var(--primary-txt-clr);
  margin-top: 1rem !important;
}

.contact-form {
  margin-top: 8rem;
  width: 800px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 4rem;
  column-gap: 6rem;
  align-items: center;
  justify-content: start;
}

.name-box {
  grid-column: 1 / 3;
}

.email-box {
  grid-column: 3 / -1;
}

.subject-box {
  grid-column: 1 / 3;
}

.message-box {
  grid-column: 1 / -1;
}

label {
  font-weight: 500;
  font-size: 1.8rem;
}

.form-grp input,
.form-grp textarea {
  font-size: inherit;
  padding: 1.2rem 2rem;
  border-radius: 7px;
  display: block;
  font-family: inherit;
  margin-top: 1rem;
  width: 100%;
  background-color: var(--bg3-clr);
  outline: none;
  border: none;
  font-size: 1.8rem;
}

.contact-cta {
  grid-column: 1 / 2;
  display: inline-block;
  padding: 1.5rem 0;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.contact-cta-icon {
  color: #fff;
}

.contact-cta:hover {
  background-color: var(--primary2-clr);
}

.form-grp input:focus,
.form-grp textarea:focus {
  box-shadow: 0 0 1px 2px var(--primary1-clr);
}
