body { 
margin:0%;
padding-top: 1%;
padding-left: 20%;
padding-right:20%;
}

h2{
letter-spacing: 0.2rem;
text-align: left;
}
a {
	text-decoration: none;
color: #000;
}

a {
  color: #000;
  text-decoration: none;
  padding-bottom: 2px;
}

a:hover,
a:focus {
  background-image: radial-gradient(circle, currentColor 0.6px, transparent 0.7px);
  background-size: 3px 2px;
  background-repeat: repeat-x;
  background-position: 0 100%;
}
 
.menu
{
display: inline flex;
margin: 1% 10px 10px;
letter-spacing: 0.2rem;
}

	
.nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
    display: flex; 
      text-align: center;
	flex: 0 0 50%;
	text-decoration: none;
}
 
.nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    text-align: center;
	flex: 0 0 50%;
	text-decoration: none;
}
 
.nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    text-align: center;
	flex: 0 0 50%;
	text-decoration: none;
   
}
footer {
padding-top: 5%;
padding-left: 20%;
padding-right:20%;
/*border-top: 2px dotted gray;*/
  
}/* Obal stránkovania */
.custom-pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Základný wrapper WordPressu */
.custom-pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 5px; /* HLAVNÝ ROZOSTUP medzi šípkami a číslami */
}

/* Čísla stránok + šípky */
.custom-pagination .page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 25px;
    height: 25px;
    margin: 0 2px; /* rozostupy medzi jednotlivými číslami */
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.2s ease-in-out;
}

/* Aktívna stránka */
.custom-pagination .page-numbers.current {
    background: #778899;
    color: #fff;
}

/* Hover efekt */
.custom-pagination .page-numbers:hover:not(.current) {
    background: #f2f2f2;
}

/* Šípky – mierne väčšie */
.custom-pagination .page-numbers.prev,
.custom-pagination .page-numbers.next {
    font-size: 12px;
    padding: 0 12px;
}
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    margin-top: 10px;
    padding: 10px;
    background: #f7f7f7;
    border-radius: 24px;
}

.post-nav__item {
    text-decoration: none;
    padding: 10px;
    border-radius: 20px;
    transition: background 0.2s ease;
}

.post-nav__item:hover {
    background: #eaeaea;
}

.post-nav__item--prev {
    text-align: left;
}

.post-nav__item--next {
    text-align: right;
}

.post-nav__label {
    display: block;
    font-size: 16px;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.post-nav__title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}