@charset "UTF-8";
/* CSS Document */

div.wrapper {
	width:100%;
	height:auto;
	padding:10px 20px;
	box-sizing: border-box;
	background: white;
}

	 .article-wrapper {
		 width: 100%;
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

h1.result_title{
	width:100%;
	height:auto;
	text-align: center;
	line-height: 3em;
	font-weight:bold;
	
	
}

  .article-card {
    flex: 0 0 auto;
    width: 300px;
    border: 1px solid #ccc;
    padding: 1rem;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  .article-card img {
    width: auto;
    height: 10vh;
    border-radius: 4px;
  }

  .article-card h2 {
    font-size: 1.1rem;
    margin: 0.5rem 0;
  }

  .article-card p {
    font-size: 0.9rem;
    color: #444;
  }

