body {
  margin: 0;
  padding: 0;
}
.entry-header {
  display: flex;
  align-items: center;
  background: #fff;
  height: 100px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.16);
}
.entry-header-inner {
  display: flex;
  align-items: center;
  width: 1200px;
  margin: 0 auto;
}
.entry-header .logo {
  width: 209px;
  height: 46px;
  margin-right: 58px;
}
.entry-header .logo img {
  width: 100%;
  height: auto;
  margin: 0;
  cursor: pointer;
}
.entry-header.search-container {
  position: relative;
  width: 100%;
}
.entry-header .search-input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  box-sizing: border-box;
}
.entry-header .suggestions,
.entry-header .search-container .suggestions {
  position: absolute;
  top: 56px;
  left: 0;
  width: 100%;
  border: 1px solid #ddd;
  border-top: none;
  background: #fff;
  z-index: 10;
  list-style: none;
  margin: 0;
  box-sizing: border-box;
  padding: 10px 0;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}
.entry-header .suggestion-item,
.entry-header .search-container .suggestion-item {
  padding: 0.5rem 2rem;
  cursor: pointer;
}
.entry-header .suggestion-item:hover,
.entry-header .search-container .suggestion-item:hover {
  background: #f0f0f0;
}
.entry-header .search-bar {
  position: relative;
  flex: 1;
}

.entry-header .search-container {
  position: relative;
  width: 100%;
}
.entry-header .search-bar input {
  width: 100%;
  height: 56px;
  padding-left: 62px;
  border-radius: 10px;
  border: none;
  background: #f2f2f2;
  font-size: 18px;
  color: #595959;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.entry-header .search-container.has-suggestions input {
  background: #fff;
  color: #000;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border: 1px solid #ddd;
  border-bottom: none;
}

.entry-header .search-bar.has-suggestions input {
  background: #fff;
  color: #000;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border: 1px solid #ddd;
  border-bottom: none;
}
.entry-header .search-bar img {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.entry-main {
  width: 1200px;
  min-height: calc(100vh - 418px);
  padding-top: 102px;
  margin: 0 auto;
  text-align: center;
}
.entry-title {
  font-family: 'SpoqaHanSansNeo-Medium';
  font-size: 42px;
  margin: 0 0 26px 0;
}
.entry-desc {
  font-family: 'SpoqaHanSansNeo-Regular';
  font-size: 18px;
  color: #000;
  margin-bottom: 34px;
}
.entry-total-row {
  display: flex;
  align-items: center;
  justify-content: end;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 43px;
}
.entry-total {
  font-family: 'SpoqaHanSansNeo-Regular';
  font-size: 16px;
  color: #595959;
  text-align: right;
}
.entry-total span {
  color: #da291c;
}
.entry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 78px 20px;
  margin-bottom: 102px;
}
.entry-card {
  background: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border 0.2s;
  box-sizing: border-box;
  cursor: pointer;
}
.entry-card:hover .entry-card-img {
  border: 2px solid #da291c;
  padding: 10px;
}
.entry-card-img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11px;
  width: 224px;
  height: 224px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 15px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.07);
}
.entry-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.entry-card-title {
  font-family: 'SpoqaHanSansNeo-Medium';
  font-size: 16px;
  line-height: 24px;
  color: #222;
  text-align: center;
  margin-top: 8px;
}
.entry-more {
  font-family: 'SpoqaHanSansNeo-Medium';
  text-align: center;
  color: #595959;
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 108px;
}

.entry-search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 880px;
}
.entry-search-empty img {
  width: 38px;
  height: 38px;
}
.entry-search-empty p {
  font-family: 'SpoqaHanSansNeo-Regular';
  font-size: 24px;
  line-height: 36px;
  color: #595959;
}

.entry-footer {
  background: #444a54;
  color: #fff;
  padding: 40px 0 24px 0;
  margin-top: 80px;
  position: relative;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-bottom: 12px;
}
.footer-logo img {
  height: 28px;
  margin-right: 8px;
}
.footer-info {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 8px;
}
.footer-copy {
  font-size: 12px;
  color: #aaa;
}
.footer-top-btn {
  position: absolute;
  right: 40px;
  bottom: 24px;
  background: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.footer-top-btn img {
  width: 20px;
  height: 20px;
}
