@charset "utf-8";

/* css reset */
html,
body {
  position: relative;
  -webkit-text-size-adjust: 100%;
  background-color: #242525;
  color: white;
  width: 100%;
  height: 100%;
}
body {
  margin: 0;
  overflow: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
}
blockquote,
body,
button,
code,
dd,
div,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
legend,
li,
ol,
p,
pre,
select,
td,
textarea,
th,
ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
button,
input,
select,
strong,
table,
textarea {
  font-family: "맑은 고딕", "Malgun Gothic", "Apple SD Gothic Neo", "돋움",
    "dotum", sans-serif;
  font-size: 16px;
  font-weight: 400;
  word-break: keep-all;
  word-wrap: break-word;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

address,
em {
  font-style: normal;
}
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
a:active,
a:focus,
a:hover {
  text-decoration: none;
}
button,
input,
select,
textarea {
  border: 0;
  vertical-align: middle;
  background: 0 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  outline: 0;
  overflow: auto;
}
button {
  cursor: pointer;
  width: auto;
  overflow: visible;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  background: 0 0;
  border: 0;
}
button[disabled="disabled"] {
  cursor: default;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
  empty-cells: show;
}
caption,
legend {
  visibility: hidden;
  font-size: 0;
  width: 0;
  height: 0;
  line-height: 0;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
input[type="password"]::-ms-reveal,
input[type="text"]::-ms-clear {
  display: none;
}
input.disabled,
input.readonly,
input[disabled="disabled"],
input[readonly="readonly"],
select[disabled="disabled"] {
  background-color: #f5f5f5;
  cursor: default;
  border-color: #ddd;
}
select {
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
select::-ms-expand {
  display: none;
}
::-webkit-input-placeholder {
  color: #888 !important;
  font-weight: 400;
}
::-moz-placeholder {
  color: #888 !important;
  font-weight: 400;
}
:-ms-input-placeholder {
  color: #888 !important;
  font-weight: 400 !important;
}
:-moz-placeholder {
  color: #888 !important;
  font-weight: 400;
}
select.placeholder {
  color: #888 !important;
  font-weight: 400;
}
td,
th {
  text-indent: 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace;
  font-size: 1em;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
progress {
  vertical-align: baseline;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
/* // css reset */
/* ---------------------------------------------------------- */

/* common */
button {
  border: 0;
  background-color: transparent;
  padding: 0;
}

input {
  border: 0;
}

input:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

h1 {
  margin: 0;
}

body {
  margin: 0;
}

/* ---------------------------------------------------------- */

.body-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* ---------------------------------------------------------- */

/* Header */
.site-header {
  height: 40px;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #444;
}

.site-header .blog-image {
  height: 140%;
  margin-right: 10px;
}

.site-header .blog-title {
  font-size: 30px;
  margin-left: 10px;
  margin-top: 3px;
  font-weight: bold;
  white-space: nowrap;
  color: black;
  height: 30px;
  display: flex;
  align-items: center;
}

.site-header .link_tit {
  display: none;
}

/* 카테고리 설정 제거 */
.site-header .tt_category {
  margin: 0;
  padding: 0;
  margin-top: 3px;
  list-style-type: none;
}

/* 카테고리 list 기본 설정을 제거하고 가로 정렬 */
.site-header .category_list {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin-left: 10px;
}

.site-header .category_list li {
  margin-left: 30px;
  font-size: 20px;
  color: white;
  font-weight: bold;
}

.site-header .category_list li img {
  display: none;
}

/* 카테고리 글 수 제거 */
.site-header .c_cnt {
  display: none;
}

/* **************************************************** */
/*                       Container                      */
/* **************************************************** */

#container {
  padding-bottom: 30px;
}

/* Article */
.article .header {
  width: 1000px;
  height: 700px;
  margin: 0 auto;
  margin-top: 100px;
  position: relative;
  font-size: 16px;
  padding: 0 20px;
  box-sizing: border-box;
  max-width: 100%;
  background-color: #212020;
  border-radius: 20px;
  overflow: hidden;
}

.article .thumbnail {
  width: 100%;
  height: 100%;
  margin-left: auto;
  position: absolute;
  right: 0;
  
}

.article .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article .thumbnail .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #212020 0, transparent 45%),
    linear-gradient(to top, #212020 0, transparent 30%),
    linear-gradient(to left, #212020 0, transparent 45%),
    linear-gradient(to bottom, #212020 0, transparent 0%);
}

.article .article-info {
  position: absolute;
  bottom: 70px;
  line-height: 1;
  left: 30px;
  width: 45%;
}

.article .article-info .title {
  font-size: 32px;
  color: white;
}

.article .article-info .category {
  margin-top: 17px;
  font-size: 20px;
  color: #28e5ae;
  font-weight: bolder;
}

.article .article-info .date {
  margin-top: 3px;
  font-size: 14px;
  color: rgb(154, 160, 166);
}

.article-info .btns {
  display: flex;
}

.article-info .btns a {
  display: flex;
  width: fit-content;
  margin-top: 20px;
  font-size: 20px;
  padding: 0.5em 6em;
  background-color: #0088ff;
  color: black;
  border-radius: 30px;
  margin-right: 15px;
  font-weight: bolder;
  
}

  .btns:hover{
  background-color: greenyellow
  font-size: 20px;
  padding: 0.5em 6em;
  border-radius: 30px;
  transitio
}

.article .header .adsense{
  position:absolute;
  width: 450px;
  height: 250px;
  bottom: 55px;
  right: 50px;
  
}

.article .post-info {
  display: flex;
  height: 50px;
  margin-top: 30px;
  position: relative;
  z-index: 10000;
}

.article .post-info .author-image {
  height: 100%;
  width: 50px;
  object-fit: cover;
  border-radius: 10px;
}

.article .tags {
  display: flex;
  align-items: center;
  position: absolute;
  left: 55px;
  margin-left: 15px;
  padding: 5px 0;
}

.article .tags .tag-item {
  width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.article .tags .divider {
  height: 20px;
  width: 1px;
  background-color: #aaa;
}

.article .tags .tag-item div:first-child {
  display: flex;
  align-items: center;
  color: white;
}

.article .tags .tag-item div:nth-child(2) {
  font-size: 12px;
  color: #bbb;
  font-weight: bold;
}

.article .tags img {
  height: 20px;
}

.article .tags .stars img {
  margin-left: 3px;
  height: 12px;
  margin-bottom: 4px;
}





.article .body {
  width: 800px;
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  line-height: 1.8;
  color: #eee;
}

#article-view h1 {
  font-size: 1.8em;
  margin: 1.8em 0 20px;
  color: inherit !important;
}

#article-view h2 {
  font-size: 1.62em;
  margin: 1.7em 0 20px;
  color: inherit !important;
}

#article-view h3 {
  font-size: 1.5em;
  margin: 1.7em 0 20px;
  color: inherit !important;
}


figure.fileblock .filename, #tt-body-page figure.fileblock .filename {
  color: inherit;
}

figure.fileblock .image, #tt-body-page figure.fileblock .image {
  filter: invert(1);
}

figure.fileblock a::after, #tt-body-page figure.fileblock a::after {
  filter: invert(1);
}


#article-view a[href] {
  color: #0070d1;
  text-decoration: underline;
}

#article-view a[href]:hover {
  opacity: 0.7;
}

#article-view ol,
#article-view ul {
  padding-left: 20px;
}

#article-view ol li,
#article-view ul li {
  padding-top: 10px;
}

#tt-body-page blockquote {
  color: white;
  background-color: #212020;
  border-radius: 5px;
  padding: 10px 20px;
}

#tt-body-page blockquote[data-ke-style="style1"] {
  color: white;
}

#tt-body-page hr {
  filter: invert(1);
}

.tt-box-textarea .tt_txt_user {
  color: white;
}

.tt-box-textarea textarea,
.tt-box-textarea div {
  color: white !important;
}

.tt-wrap-cmt .tt-link-user {
  color: white !important;
}
.tt-wrap-cmt .tt_desc {
  color: white !important;
}
.tt-btn_register {
  filter: invert(1);
}

/* List Wrapper */
.list-wrapper {
  display: flex;
  flex-direction: column;

  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.list-wrapper .header {
  margin-top: 50px;
  margin-bottom: 30px;
}

.list-wrapper .header h1 {
  font-size: 30px;
  font-weight: 700;
}

.list-wrapper .list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.list-wrapper .list .content {
  display: flex;
  flex-direction: column;
}

.list-wrapper .list .content:hover .thumbnail {
  transform: scale(1.2);
}

.list-wrapper .list .content:hover .text {
  color: red;
}

.list-wrapper .list .content-top {
  height: 250px;
  width: 100%;
  background-color: gray;
  background: url("/images/no-image.svg") no-repeat 50px;
  position: relative;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  overflow: hidden;
}

.list-wrapper .list .content-top .no-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.list-wrapper .list .content-top .thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: transform 0.3s;
}

.list-wrapper .list .content-bottom {
  display: flex;
  margin-top: 15px;
}

.list-wrapper .list .content-bottom img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.list-wrapper .list .content-bottom .text {
  padding: 5px 0;
  margin-left: 15px;
  width: 100%;
  transition: color 0.3s;
}

.list-wrapper .list .content-bottom .text h2 {
  font-size: 1.2em;
}

.list-wrapper .list .content-bottom .text .category {
  color: #00a173;
  margin-top: 5px;
}

.paging {
  margin-top: 60px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.paging .pages {
  height: 100%;
  display: flex;
  align-items: center;
}

.paging .pages .num {
  height: 100%;
  margin-right: 12px;
}
.paging .pages .num:first-child {
  margin-left: 12px;
}

.paging .pages .num span {
  height: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
  box-sizing: border-box;
}

.paging .pages .num span.selected {
  background-color: black;
  color: white;
}

.paging .arrow {
  height: 80%;
}

.no-more-prev,
.no-more-next {
  display: none;
}

.paging .arrow img {
  height: 100%;
}

footer {
  margin-top: auto;
  padding: 30px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .adsense {
    display:none;
  }
}

@media (max-width: 1000px) {
  .article .header {
    border-radius: 0;
  }
}

@media (max-width: 500px) {
  .site-header {
    padding: 10px;
  }
  .site-header .blog-title {
    font-size: 20px;
  }
  .site-header .tt_category {
    margin-left: auto;
  }
  .site-header .category_list li {
    font-size: 16px;
    margin-left: 15px;
  }
  .article .header {
    height: 500px;
    margin-top: 0;
  }
  .article .article-info {
    left: 15px;
    bottom: 30px;
    width: calc(100% - 30px);
  }

  .article .article-info .title {
    font-size: 38px;
  }

  .list-wrapper .list .content:hover .thumbnail {
    transform: none;
  }

  .list-wrapper .list .content:hover .text {
    color: inherit;
  }

  .article-info .btns a {
    font-size: 15px;
  }

  footer {
    justify-content: center;
  }
  .article .tags {
    margin-left: 0;
  }
}

.driver{
  position: relative;
  top: 15px;
  right: 10%;
  font-size:30px ;
width: 80%;
height: 45px;
border:none;
cursor:pointer;
box-shadow: 2px 4px 6px rgba(0, 0, 0, 0)40%);
border-radius: 30px;
line-height: 1.5;
text-align: center;
white-space: nowrap;
over-flow:hidden;
display:block;
  background-color:#0088ff;
  transition: background-color 0.3s, transform 0.3s;
  font-family: "times new roman",times,serif;
  margin-left: auto;
  margin-right: auto;
  
}
  .driver:hover {
   color:black;
   background-color: rgb(235, 161, 65);
  transform: scale(1.1);
   
  }

  
}


