/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: var(--body-text-color);
  padding: 150px 20px 25px;
  font-family: "iransans";
  font-weight: 100;
}

.link-theme:hover{
  color: #ffbd2e;
  font-weight: 500;
  text-shadow: 0px 0px 10px #eaff5e;
}

.footer-code-header{
  padding: 10px;
  padding-right: 60px;
  border-radius: 15px 15px 0px 0px;
  background-color: var(--footer-code-header);
}

.footer-red-circle {
  position: absolute;
  top: -28px;
  right: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
}
.footer-yellow-circle {
  position: absolute;
  top: -28px;
  right: 26px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffbd2e;
}
.footer-green-circle {
  position: absolute;
  top: -28px;
  right: 41px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #29c840;
}

.link{
  font-family: monospace;
  font-size: small;
  text-decoration: none;
}

.footer-code-body{
  position: relative;
  top: -22px;
  font-family: "iransans";
  border-radius:  0 0 15px 15px;
  padding-right: 20px;
  margin: 0;
  background-color: var(--footer-console-body);
}
.footer-caption-code-body{
  text-align: justify;
  font-size: 95%;
  position: relative;
  top: -22px;
  font-family: "iransans";
  border-radius:  0 0 15px 15px;
  padding: 12px;
  margin: 0;
  background-color: var(--footer-console-body);
}

.tt{
  position: relative;
  font-family: "iransans";
  border-radius:  0 0 15px 15px;
  padding-right: 20px;
  margin: 0;
}

.footer-tt-red-circle {
  position: absolute;
  top: 36px;
  right: 30px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
}
.footer-tt-yellow-circle {
  position: absolute;
  top: 36px;
  right: 45px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffbd2e;
}
.footer-tt-green-circle {
  position: absolute;
  top: 36px;
  right: 60px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #29c840;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}